-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 852 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
<html>
<head>
<title>Warhammer Dice</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" href="styles.css" media="all" rel="stylesheet">
</head>
<body>
<div class="inputs">
<div class="row">
<div class="half">
<label for="dice"># Dice</label>
<input type="tel" name="dice" />
</div>
<div class="half">
<label for="sum">Hits Needed</label>
<input type="tel" name="sum" />
</div>
</div>
<a href="#" id="submit" class="btn">Calculate</a>
</div>
<div id="result"></div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>