-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 2.26 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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Wild Magic Util</title>
<meta name="description" content="">
<meta name="author" content="bncarey42">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Eagle+Lake" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/skeleton.css">
<link rel="stylesheet" href="../css/style.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="../images/70sDice.png">
<!-- Script
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src='js/table.js'></script>
<script src='js/wildmagic.js'></script>
</head>
<body>
<div id='back'><a href="../"><< back to util list</a></div>
<div class="container">
<div class="row">
<div id="wminput">
<p>Input sorcerer level:</p>
<input type="number" id="lvl"/>
<button onclick="cast()" id="cast">CAST</button>
</div>
<h3 id="surge_result"></h3>
</div>
</div>
</body>
</html>