Das HTML-Element SVG (Scalable Vector Graphics) nutzt verschiedene Unterlemente wie <circle>, <rect>, <line> und <polygon>, um die verschiedenen Formen zu zeichnen. Die Attribute wie cx, cy, r, x, y, width, height, x1, y1, x2, y2 usw. werden verwendet, um die Positionen und Abmessungen der Formen festzulegen.
<!DOCTYPE html>
<html>
<head>
<title>Zeichnen mit SVG</title>
</head>
<body>
<svg width="500" height="500">
<!-- Kreis -->
<circle cx="100" cy="100" r="50" stroke="blue" fill="yellow" stroke-width="2" />
<!-- Rechteck -->
<rect x="150" y="150" width="100" height="50" fill="green" />
<!-- Linie -->
<line x1="250" y1="250" x2="350" y2="250" stroke="red" stroke-width="3" />
<!-- Dreieck -->
<polygon points="400,400 450,300 350,350" stroke="purple" fill="orange" stroke-width="2" />
</svg>
</body>
</html>