-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
41 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CSS3 Flexbox Carousel</title>
<link rel="stylesheet" href="library/css/common.css" />
</head>
<body>
<h1>CSS3 Flexbox Carousel</h1>
<p>By <a href="http://www.twitter.com/andismith" target="_blank">@andismith</a>
<div id="carousel">
<a href="" class="navigation previous">«</a>
<a href="" class="navigation next">»</a>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<p>More about <a href="http://caniuse.com/#search=flexbox" target="_blank">flexbox browser support</a></p>
<p>Read more on <a href="http://www.andismith.com/" target="_blank">http://andismith.com</a></p>
<a href="https://github.com/andismith"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<script src="library/js/modernizr.js"></script>
<script src="library/js/common.js"></script>
</body>
</html>