-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (33 loc) · 1.58 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container head">
<div class="page-header">
<h1>Tell Me A Story Today</h1>
<h4>A tale told in the address bar</h4>
</div>
<p class="lead"><em>Alice's Adventures in Wonderland</em>
<br>
and
<br>
<em>Through the Looking-Glass, and What Alice Found There</em>
<br>
By Lewis Caroll</p>
<span><button type="button" id="previous" class="btn btn-primary btn-large clickable"><span class="glyphicon glyphicon-step-backward"></span> Previous Line</button>
<button type="button" id="next" class="btn btn-primary btn-large clickable">Next Line <span class="glyphicon glyphicon-step-forward"></span></button></span>
<br><br>
<span>Try the <a id="ks" href="#" tabindex="0">keyboard shortcuts</a></span>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">A project by <a href="http://twitter.com/cmchap">Cory Chapman</a> for <a href="https://github.com/dariusk/NaNoGenMo-2014">NaNoGenMo 2014</a>. Code available on <a href="http://github.com/cmchap/tellmeastory.today">Github</a></p> </div>
</footer>
</body>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/scripts-min.js"></script>
</html>