-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass23.html
More file actions
39 lines (28 loc) · 1.31 KB
/
class23.html
File metadata and controls
39 lines (28 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SVG Shapes Example</title>
<link rel="icon" href="icon.png" type="image/png">
</head>
<body>
<h2>SVG Shapes Demo</h2>
<svg width="400" height="300" xmlns="http://www.w3.org/2000/svg" style="border: 1px solid #ccc">
<!-- Rectangle -->
<rect x="10" y="10" width="100" height="50" fill="red" stroke="black" stroke-width="2" />
<!-- Square -->
<rect x="130" y="10" width="50" height="50" fill="purple" stroke="black" stroke-width="2" />
<!-- Circle -->
<circle cx="230" cy="35" r="25" fill="blue" stroke="black" stroke-width="2" />
<!-- Ellipse -->
<ellipse cx="320" cy="35" rx="40" ry="20" fill="green" stroke="black" stroke-width="2" />
<!-- Line -->
<line x1="10" y1="100" x2="390" y2="100" stroke="black" stroke-width="3" />
<!-- Triangle (Polygon) -->
<polygon points="200,150 170,200 230,200" fill="orange" stroke="black" stroke-width="2" />
<!-- Text -->
<text x="10" y="250" font-size="24" fill="black">SVG Shape Set</text>
</svg>
< > & " ' © ® ™ ¢ £ ¥ € § ¶ · – — ‘ ’ “ ” … • ′ ″ °
</body>
</html>