+ 2
How to use svg in HTML5
5 Answers
+ 28
Maybe you wanted to ask "How to use svg in HTML5"?
Every web developer knows how to use it.
Check out the HTML course. It has lessons about how to use it.
+ 5
use svg tag first then start with the shape u want to animate
<svg width="140px" Height="120px">
<rect> ...codes</rect>
</svg>
+ 4
<svg width="144px" Height="120px">
<rect> ...codes</rect>
</svg>
+ 4
<svg width="2000" height="2000">
<rect width="300" height="100"
x="20" y="20" fill="green" />
</svg>
<!--like thos bro-->
+ 3
use svg tag first then start with the shape u want to animate
<svg width="140px" Height="120px">
<rect> ...codes</rect>
</svg