-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
19 lines (18 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>#aesthetic Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p id="content">Today's #aesthetic is <span id="result"></span></p>
<p><button id="reroll">Give me another</button></p>
<p><button id="back">Back</button><button id="forward">Forward</button></p>
<p><a id="tweet" target="_blank">Tweet this #aesthetic</a></p>
<p class="information">Made using <a href="https://www.tracery.io/" target="_blank">Tracery</a></p>
<script src="tracery.js"></script><!-- See https://github.com/galaxykate/tracery/blob/tracery2/LICENSE.txt for Tracery's license. -->
<script src="grammar.js"></script>
<script src="main.js"></script>
</body>
</html>