-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.19 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
<!DOCTYPE HTML>
<html>
<head>
<title>Fair Dice</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.cyan-blue.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" type="text/css" href="assets/main.css">
</head>
<script src="fairDice.js"></script>
<div id="page">
<!-- Icon button -->
<div class='navbutton' align=right>
<button class="mdl-button mdl-js-button mdl-button--icon" align='right' onclick="location.href='about.html'">
<i class="material-icons">info</i>
</button>
</div>
<h1 id="number" class="number">0</h1>
<div align='center' class="dicebutton">
<body>
<button id="rollbutton" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" onclick="rollDice();"> Roll Dice</button>
</body>
</div>
<h1 class="madebyme">Made by <a href="https://bdhazman.github.io">Brent Hazman</a></h1>
</div>
</html>