Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>Заголовок документа</
title
>
</
head
>
<
body
>
<
h2
>Пример свойства stroke-width</
h2
>
<
svg
viewBox=
"0 0 30 10"
>
<
circle
cx=
"5"
cy=
"5"
r=
"3"
stroke=
"#1c87c9"
stroke-width=
"3"
/>
</
svg
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> </head> <body> <h2>Пример свойства stroke-width</h2> <svg viewBox="0 0 30 10"> <circle cx="5" cy="5" r="3" stroke="#1c87c9" stroke-width="3" /> </svg> </body> </html>