-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path01-svg.html
48 lines (41 loc) · 1.07 KB
/
01-svg.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
<html>
<head>
<meta charset="utf-8">
<title>SVG</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css">
<style>
svg {
background: #f9f9f9;
display: block;
margin: 0 auto;
}
h1 { margin-bottom: 2rem; }
body {
padding-top: 2rem;
padding-bottom: 2rem;
}
h3 {
margin-top: 3rem;
margin-bottom: 1rem;
}
.container {
max-width: 46rem;
}
img.block {
display: block;
border: solid #333 1p;
margin: 0 auto;
}
</style>
</head>
</head>
<body>
<div class="container">
<h1>SVG is a visualization language</h1>
<p>It's like HTML, but for drawing: if you liked <code><p></code> you'll <em>love</em> <code><circle></code></p>
<p>Let's draw some circles and rectangles! <small><sup>(but no lines, because that would be <sup>100% totally <sup>insane)</sup></sup></sup></small></p>
<svg height="500" width="800">
</svg>
</div>
</body>
</html>