-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
69 lines (54 loc) · 1.61 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700|Merriweather:400italic,400' rel='stylesheet' type='text/css'>
<!--
STYLES:
======
Default page styles.
-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!--
DEPENDENCIES:
============
JavaScript dependencies to load
page animations and alike.
-->
<script src="js/modernizr.js"></script>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/main.js"></script>
<title>HDX Presentation</title>
</head>
<body>
<!--
SELECTORS:
=========
Main selector pods.
-->
<div class="projects-container">
<ul>
<li class="cd-single-project">
<a href="./manual">
<div class="cd-title">
<h2>Manual</h2>
<p>Manual slides ideal for stage presentation.</p>
</div>
</a>
</li>
<li class="cd-single-project">
<a href="./automated">
<div class="cd-title">
<h2>Automated</h2>
<p>Automated presentation with scenarios and automatic slides.</p>
</div>
</a>
</li>
</ul>
<a href="#0" class="cd-close">Close</a>
<a href="#0" class="cd-scroll">Scroll</a>
</div>
</body>
</html>