-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Those Who Came Before</title>
<link href="styles/normalize.css" rel="stylesheet">
<link href="styles/dark.css" rel="stylesheet">
<link href="styles/styles.css" rel="stylesheet">
<script src="script/itemGenerator.js" defer></script>
</head>
<body>
<header>
<h1>Those Who Came Before</h1>
<pre>A Small Game About How We See the Past</pre>
</header>
<hr/>
<main>
<section>
<h2>Item Generator</h2>
<div>
<button id="genButton">Generate</button>
</div>
<div id="genHolder">
</div>
</section>
</main>
<hr/>
<footer>
<pre>Created by <a href="https://github.com/neurosocialist">Jason Warren</a> & Harriet Layhe</pre>
</footer>
</body>
</html>