-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
112 lines (90 loc) · 3.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Timeline | Arten Channel</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body data-spy="scroll" data-target="#navbar-example">
<div class="wrapper">
<nav class="nav__wrapper" id="navbar-example">
<ul class="nav">
<li role="presentation" class="active">
<a href="#section1">
<span class="nav__counter">01</span>
<h3 class="nav__title">Intro</h3>
<p class="nav__body"><strong>Timeline-style navigation</strong>. Scroll down to see what happens, or click
on a number in the nav.</p>
</a>
</li>
<li role="presentation">
<a href="#section2">
<span class="nav__counter">02</span>
<h3 class="nav__title">Section 2 Title</h3>
<p class="nav__body">Sed sit amet justo sed odio tempus tempus. Vestibulum sed varius mi, sit amet
condimentum lacus.</p>
</a>
</li>
<li role="presentation">
<a href="#section3">
<span class="nav__counter">03</span>
<h3 class="nav__title">Section 3 Title</h3>
<p class="nav__body">Sed sit amet justo sed odio tempus tempus. Vestibulum sed varius mi, sit amet
condimentum lacus.</p>
</a>
</li>
<li role="presentation">
<a href="#section4">
<span class="nav__counter">04</span>
<h3 class="nav__title">Section 4 Title</h3>
<p class="nav__body">Sed sit amet justo sed odio tempus tempus. Vestibulum sed varius mi, sit amet
condimentum lacus.</p>
</a>
</li>
<li role="presentation">
<a href="#section5">
<span class="nav__counter">05</span>
<h3 class="nav__title">Section 5 Title</h3>
<p class="nav__body">Sed sit amet justo sed odio tempus tempus. Vestibulum sed varius mi, sit amet
condimentum lacus.</p>
</a>
</li>
<li role="presentation">
<a href="#section6">
<span class="nav__counter">06</span>
<h3 class="nav__title">Section 6 Title</h3>
<p class="nav__body">Sed sit amet justo sed odio tempus tempus. Vestibulum sed varius mi, sit amet
condimentum lacus.</p>
</a>
</li>
</ul>
</nav>
<section class="section section1" id="section1">
Scroll down or use the nav.
</section>
<section class="section section2" id="section2">
Section 2
</section>
<section class="section section3" id="section3">
Section 3
</section>
<section class="section section4" id="section4">
Section 4
</section>
<section class="section section5" id="section5">
Section 5
</section>
<section class="section section6" id="section6">
Section 6
</section>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/timeline-animation.js"></script>
</html>