In html, you can embed avg elements directly into an html page
Answers
Answered by
0
Drawing Shapes in HTML
SVG stands for Scalable Vector Graphics and it is used to draw shapes.
It offers several methods for drawing paths, boxes, circles, text and graphic images.
SVG is not pixel-based, so it can be magnified infinitely with no loss of quality.
Inserting SVG images
<img src="krishna.svg" alt="photo of krishna" height="300" width="240"/>
Drawing a Circle
to draw shapes with SVG we first need to create and SVG element with two atributes width and height.
<svg width="1000" height="1000"></svg>
to create circle, add a <circle> tag
<svg width="1000" height="1000">
<circle cx="80" cy="80" r="50" fill="green"/>
</svg>
Other shapes <rect>, <line>, <polyline>, <ellipse>, <polygon> etc.
More Question:
HTML Meaning: what is html?
brainly.in/question/643321
Answered by
0
Answer:
#love....
Explanation:
Learn More :
HTML : brainly.in/question/12516871
Similar questions