-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.48 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
<!Doctype html>
<html>
<head>
<title>Cobejewed Demo</title>
<link rel="stylesheet" type="text/css" href="./front/css/base.css" />
<script type="text/javascript" src="./include/jquery.js"></script>
<script type="text/javascript" src="./include/func.js"></script>
<script type="text/javascript" src="./script/event.js"></script>
<script type="text/javascript" src="./script/jewel.js"></script>
<script type="text/javascript" src="./script/demo.js"></script>
</head>
<body>
<div id="jewel-wrap">
<div id="jewel-sys-info">
<table>
<tr>
<td>
<select id="jewel-ground-size" name="jewel-ground-size">
<option value="">Ground Size</option>
<option value="8">8X8</option>
<option value="10">10X10</option>
<option value="12">12X12</option>
<option value="14">14X14</option>
</select>
</td>
</tr>
<tr>
<td>
<button id="jewel-start-game">Game Start</button>
</td>
</tr>
</table>
</div>
<div id="jewel-battle-ground"></div>
</div>
</body>
</html>