My first SVG creation

SVG is amazing, I want to design the logo of my next company using it!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<svg style='border: solid 1px #0f0' viewbox='0 0 200 200' stroke="#44337a" fill='#6b46c1'>
<circle cx=100 cy=100 r=80 fill=none />

<circle cx=60 cy=60 r=10 fill=none stroke=black />
<circle cx=60 cy=60 r=6 fill=#0074D9 stroke=none />

<circle cx=140 cy=60 r=10 fill=none stroke=black />
<circle cx=140 cy=60 r=6 fill=#0074D9 stroke=none />



<path d="
M 90,140
A 8 5 0 1 0 110,140
z
" fill=none />

<circle cx=100 cy=100 r=20 fill=#FF4136 stroke=none />


</svg>

I am currently working on LiveForm which makes setting up contact forms on your website a breeze.