-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphics.html
51 lines (50 loc) · 1.2 KB
/
Graphics.html
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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Graphics</title>
<link rel="stylesheet" href="Graphics.css">
</head>
<body>
<div>
<h1>Graphics</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="Fonts.html">Fonts</a>
<a href="Tables.html">Tables</a>
<a href="Forms.html">Forms</a>
<a href="Graphics.html">Graphics</a>
<a href="Lists.html">Lists</a>
</nav>
<div>
<svg width="500" height="200">
<circle cx="80" cy="80" r="50" fill="green" />
</svg>
</div>
<div>
<svg width="500" height="200">
<rect width="300" height="100" x="20" y="20" fill="green" />
</svg>
</div>
<div>
<svg width="500" height="200">
<line x1="10" y1="10" x2="200" y2="100" style="stroke:#000000;stroke-linecap:round;stroke-width:20" />
</svg>
</div>
<div>
<svg width="500" height="200">
<polyline style="stroke-linejoin:miter;stroke:black;stroke-width:12;fill:none;"points="100 100,150 150,200 100" />
</svg>
</div>
<div>
<svg width="500" height="200">
<ellipse cx="200" cy="100" rx="150" ry="70" style="fill:green" />
</svg>
</div>
<div>
<svg width="500" height="200">
<polygon points="100 100,200 200,300 0"style="fill:green;stroke:black;"/>
</svg>
</div>
</body>
</html>