+ 3
The <svg> tag
Please, what's the <svg> tag, what is used for and how do you use it?
4 odpowiedzi
+ 5
Draw a circle:
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>.
Definition and Usage
The <svg> tag defines a container for SVG graphics.
SVG has several methods for drawing paths, boxes, circles, text, and graphic images.
+ 4
Its used for drawing shapes
Example: rect:rectangle;
Circle:circle;
Ellipse:an ellipse, check the svg topic for more info and a better explanation
+ 3
It helps to draw shapes.
https://www.sololearn.com/learn/HTML/2200/?ref=app
https://www.sololearn.com/learn/HTML/2213/
+ 1
https://www.sololearn.com/learn/HTML/2200/?ref=app