forked from GoogleChromeLabs/ui-element-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 970 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="author" content="Paul Lewis" />
<meta name="viewport" content="width=device-width">
<title>UI elements</title>
<style>
html, body {
color: #777;
font-family: Arial;
}
li {
line-height: 1.5;
}
a {
color: #444;
}
a:visited {
color: #666;
}
h1 {
color: #222;
}
</style>
</head>
<body>
<h1>UI Element Samples</h1>
<ul>
<li><a href="./image-zoomer/">Episode 1. Image Zoomer</a></li>
<li><a href="./swipeable-cards/">Episode 2. Swipeable Cards</a></li>
<li><a href="./side-nav/">Episode 3. Side Nav</a></li>
<li><a href="./expand-collapse/">I/O: Expand & Collapse</a></li>
<li><a href="./accordion/">Episode 6. Accordion</a></li>
</ul>
<a href="https://github.com/googlechrome/ui-element-samples">See the source code for the samples</a>
</body>
</html>