-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.48 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.48 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mine for JavaScript</title>
<link rel="stylesheet" href="./static/styles/mine.css">
<style>
#game {
text-align: center;
}
</style>
</head>
<body>
<div id="game">
<div id="title">扫雷</div>
<!-- <div id="setting">-->
<!-- <div>-->
<!-- <label>难度:-->
<!-- <select id="model-select">-->
<!-- <option value="1">容易</option>-->
<!-- <option value="2">一般</option>-->
<!-- <option value="3">困难</option>-->
<!-- <option value="0">自定义</option>-->
<!-- </select>-->
<!-- </label>-->
<!-- <input id="reset" type="button" value="重新开始">-->
<!-- </div>-->
<!-- <div id="custom">-->
<!-- <label>宽:<input></label>-->
<!-- <label>高:<input></label>-->
<!-- <label>雷数:<input></label>-->
<!-- <input type="button" value="确定">-->
<!-- </div>-->
<!-- </div>-->
<!-- <div id="info">-->
<!-- <span>剩余点数:</span>-->
<!-- <span>剩余雷数:</span>-->
<!-- <span>已用时间:</span>-->
<!-- </div>-->
<div id="content"></div>
</div>
<script src="static/scripts/mine.js"></script>
<script src="static/scripts/main.js"></script>
</body>
</html>