-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.08 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>Character Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;700&display=swap');
</style>
</head>
<body>
<div id="appHeader">
<div id="appLogo" href=".">
<img id="logoIcon" src="happyd20.svg" alt="A flat style d20 with a smile face"/>
<h1>char.generator</h1>
</div>
<a className={classes.LinkGithub} href="https://github.com/laiseing/character-generator" target="blank">github</a>
</div>
<div class="container">
<button id="generateBtn" onclick="generateCharacter()">
<img id="generateIcon" src="d20icon.svg" alt="D20 dice icon" style="vertical-align: bottom; margin-bottom: 0.25rem;" />
Roll character
</button>
<div id="quoteContainer"></div>
<div id="characterContainer">
</div>
<div id="bottomText">All credits on the github page.</div>
</div>
<script src="script.js"></script>
</body>
</html>