-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 944 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
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Eisvana Glyphs Generator</title>
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<div class="container">
<header>
<nav>
<ul>
<li><a href="..">← View other pages</a></li>
</ul>
<ul>
<li><button role="button" id="themeSwitch">Switch Theme</button></li>
</ul>
</nav>
</header>
<main>
<div>
<h1 class="title">Random Eisvana Glyphs Generator</h1>
</div>
<div>
<p class="font-size-small">Note that glyphs only work in your current galaxy, they can't bring you to
other galaxies.</p>
</div>
<div>
<button class="button" id="die">🎲 Roll the Dice!</button>
</div>
<div class="output-wrapper">
<output id="glyphOutput" class="glyphs"></output>
</div>
</main>
</div>
</body>
</html>