Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML SVG

SVG (Scalable Vector Graphics)

SVG graphics, defined in XML, maintain scalability without loss of quality when zoomed or resized, and can be directly embedded in HTML pages.

IMG_4261

 

 

 

 

 

 

 

 

 

All major browsers support SVG.

What is SVG?

·  SVG stands for Scalable Vector Graphics.

·  It is used to define vector-based graphics for the web.

·  SVG defines graphics in XML format.

·  Every element and attribute in SVG files can be animated.

·  SVG is a W3C recommendation.

·  SVG integrates with other standards like CSS, DOM, XSL, and JavaScript.

The <svg> Element

The HTML <svg> element serves as a container for SVG graphics.

SVG provides various methods for drawing paths, rectangles, circles, polygons, text, and more.

SVG Circle

IMG_4262

Example

<!DOCTYPE html>
<html>
<body>

<svg width=”100″ height=”100″>
  <circle cx=”50″ cy=”50″ r=”40″ stroke=”green” stroke-width=”4″ fill=”yellow” />
</svg>

</body>
</html>