-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp9.html
More file actions
45 lines (40 loc) · 1.27 KB
/
p9.html
File metadata and controls
45 lines (40 loc) · 1.27 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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG</title>
<style>
text{
font-size: 40px;
}
</style>
</head>
<body>
<center>
<h1>This is SVG (Scalable Vector Graphics) TAG</h1>
<p><b>( HTML SVG is a modularized Language which is used to describe graphics in XML. )</b></p>
</center>
<hr>
<svg></svg>
<hr>
<svg> hI svg..!</svg>
<hr>
<svg><h1>This is a SVG HEAD tag...!</h1></svg>
<hr>
<svg style="border:2px solid red"><text x="60" y="75" fill="red" stroke="grey" stroke-width="2">Hello svg</text></svg>
<hr>
<center><h3>HTML SVG Circle Example</h3></center>
<svg width="200" height="200">
<circle r="80" cx="100" cy="100" fill="lightgrey" stroke="grey" stroke-width="4"></circle>
</svg>
<p><b>note :</b> It describe two-dimensional vector and mixed vector/raser graphic in XML.</p>
<hr>
<center>
<svg height="210" width="300">
<polygon points="100,10 40,198 190,78 10, 78 160,198" fill="red" stroke="yellow" stroke-width="4"></polygon>
</svg>
</center>
</body>
</html>