forked from mapsam/lotripsum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
34 lines (28 loc) · 792 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>LOTR Ipsum</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="wrap">
<nav>
<h1>LotrIpsum</h1>
<h2>Filler text straight from Middle-Earth</h2>
<form id="form" name="form">
<input id="add" type="submit" value="Add a Lotripsum"></input>
<input id="removeSingle" type="submit" value="Remove One"></input>
<input id="removeAll" type="submit" value="Remove All"></input>
</form>
</nav>
<section id="text"></section>
</div>
<script src="lists.js"></script>
<script src="main.js"></script>
</body>
</html>