-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Video Loop</title>
<link rel="stylesheet" href="/content/css/main.css">
</head>
<body class="full-features">
<header class="nav-bar">
<h1 class="nav-brand">Brand</h1>
<nav>
<ul>
<li><a href="#frame-one">Frame One</a></li>
<li><a href="#frame-two">Frame Two</a></li>
<li><a href="#frame-three">Frame Three</a></li>
</ul>
</nav>
</header>
<main>
<div class="video-container">
<video class="video" id="video">
<source src="/content/videos/video.mp4" type="video/mp4">
<source src="/content/videos/video.ogg" type="video/ogg">
</video>
</div>
<div class="frames-container">
<section id="frame-one" class="frame frame-one in">
<h2>Frame One content</h2>
<div class="content">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p>
<a href="/" class="btn btn-primary">More Info</a>
</div>
</section>
<section id="frame-two" class="frame frame-two">
<h2>Frame Two content</h2>
<div class="content">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p>
<a href="/" class="btn btn-primary">More Info</a>
</div>
</section>
<section id="frame-three" class="frame frame-three">
<h2>Frame Three content</h2>
<div class="content">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p>
<a href="/" class="btn btn-primary">More Info</a>
</div>
</section>
</div>
</main>
<footer>
Copyrights © 2015
</footer>
<script src="/content/js/vendor.js"></script>
<script src="/content/js/main.js"></script>
</body>
</html>