Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>Title of the document</
title
>
</
head
>
<
body
>
<
svg
width=
"300"
height=
"200"
>
<
circle
cx=
"150"
cy=
"100"
r=
"50"
stroke=
"purple"
stroke-width=
"5"
fill=
"pink"
/>
</
svg
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <svg width="300" height="200"> <circle cx="150" cy="100" r="50" stroke="purple" stroke-width="5" fill="pink" /> </svg> </body> </html>