-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (63 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Gestures</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<!-- CSS -->
<link href="css/vendor/normalize.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="notes">
<ul class="slides noList">
<li class="newNote">
<h2>This is a new Note</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #6</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #5</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #4</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #3</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #2</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li>
<h2>Note #1</h2>
<p>This is text</p>
<p>This is more text</p>
</li>
<li class="overview">
<ul class="overview noList">
<li>Note #1</li>
<li>Note #2</li>
<li>Note #3</li>
</ul>
</li>
</ul>
</div>
<!-- JavaScript -->
<script type="text/javascript" src="js/vendor/jquery.js"></script>
<script type="text/javascript" src="js/vendor/jquery.hammer.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>