-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
42 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<head>
<title>Catan Randomizer</title>
<link rel="stylesheet" href="css/stylesheet.css" type="text/css">
<script src="jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
init();
});
</script>
<script src="catan.js" type="text/javascript"></script>
</head>
<body>
<div id="content-wrapper">
<div id="content-left">
<h1 id="title">Catan Map Generator</h1>
<h4>By <a href="http://www.jaredkirschner.com">Jared Kirschner</a></h4>
<div id="gen-options">
<div>
<span><b>Please select game type:</b></span><br>
<input type="radio" name="game-type" value="normal" checked>Normal (1-4 players)<br>
<input type="radio" name="game-type" value="expanded">Expansion (5-6 players)<br>
</div>
</div>
<button id="gen-map-button" type="button" disabled="true">
Loading resources...
</button>
</div>
<div id="content-right">
<div id="map-container">
</div>
</div>
</div>
</body>
</html>