-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathindex.html
45 lines (42 loc) · 1.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSS Master Code Examples</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../css/base.css">
<script src="../js/html5shiv.min.js"></script>
</head>
<body>
<header>
<h1><i>CSS Master</i> Code Examples</h1>
</header>
<nav class="content">
<h2>CSS and SVG demos</h2>
<ul>
<li><a href="twinkling-star.html">Twinkling star</a></li>
<li><a href="svg-wipe-in.html">Animating <code>stroke-dasharray</code></a></li>
<li><a href="svg-media-queries.html">Media queries and <code>matchMedia</code></a>
<ul>
<li><a href="../images/svgmq.svg">See the SVG file</a></li>
</ul>
</li>
<li><a href="svg-media-queries-bg.html">Media queries and <code>background-size</code></a>
<ul>
<li><a href="../images/svgmqbg.svg">See the SVG file</a></li>
</ul>
</li>
<li>
<a href="svg-fragments.html">Using SVG document fragments</a>
</li>
</ul>
</nav>
<footer>
<p>
Examples from <i>CSS Master</i> written by Tiffany B. Brown and published by SitePoint, Ltd. © 2015.
</p>
</footer>
</body>
</html>