3 circles

โ€‹โ€‹๐Ÿ’พ https://replit.com/@pegasusroe/svg-3-circles

<svg viewBox="0 0 400 200" xmlns="http://www.w3.org/2000/svg">
    <title>3 circles</title>
    <circle cx="100" cy="100" r="25" fill="red"></circle>
    <circle cx="200" cy="100" r="25" fill="green"></circle>
    <circle cx="300" cy="100" r="25" fill="blue"></circle>
</svg>

Last updated

Was this helpful?