forked from mrkwnzl/random-oddities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 901 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Random Oddity Generator</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.css">
<link rel="stylesheet" href="css/style.css">
<style type="text/css"></style>
</head>
<body>
<header>
<nav>
<a href="index.html">Generator</a>
<a href="about.html">About</a>
<a href="https://github.com/mrkwnzl/random-oddities">GitHub</a>
</nav>
<h1>Random Oddity Generator</h1>
<p>Random odd items for use with tabletop RPGs</p>
</header>
<main>
<div class="center">
<h3 id="oddity"></h3>
<button id="generate-oddity-button" type="button" title="Generate oddity">Generate Oddity</button>
</div>
</main>
<script type="module" src="scripts/main.js"></script>
</body>
</html>