-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
78 lines (68 loc) · 2.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html class="no-js" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<link rel='stylesheet' type="text/css" href="./style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='speed' style='position:fixed; top: 50%'>0</div>
<div id='main'>
<div class='hero-overlay'>
</div> <!-- #hero-overlay -->
<nav id='timeline'>
<ol>
<li class='project' id='zero'>
<div class='description'>
<h2> Project 0 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#zero -->
<li class='project' id='one'>
<div class='description'>
<h2> Project 1 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#one -->
<li class='project' id='two'>
<div class='description'>
<h2> Project 2 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#two -->
<li class='project' id='three'>
<div class='description'>
<h2> Project 3 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#three -->
<li class='project' id='four'>
<div class='description'>
<h2> Project 4 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#four -->
<li class='project' id='five'>
<div class='description'>
<h2> Project 5 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#five -->
<li class='project' id='six'>
<div class='description'>
<h2> Project 6 </h2>
<span> The project that changed everything </span>
<div class='icon'></div>
</div> <!-- div.description -->
</li> <!-- li.project#six -->
</ol>
</nav> <!-- nav#timeline -->
</div> <!-- div#main -->
</body>
<script src='./timeline.js'></script>
</html>