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
height=
"310"
width=
"400"
>
<
line
x1=
"50"
y1=
"30"
x2=
"300"
y2=
"300"
style=
"
stroke:
rgb
(
8
,
112
,
177
);stroke-width:
3
"
/>
</
svg
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> <svg height="310" width="400"> <line x1="50" y1="30" x2="300" y2="300" style="stroke:rgb(8, 112, 177);stroke-width:3" /> </svg> </body> </html>