-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitle.html
102 lines (98 loc) · 2.21 KB
/
title.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<meta charset="utf8"/>
<html>
<head>
<script src="static/jquery.js"></script>
<script src="static/title.js"> </script>
<link rel="stylesheet" type="text/css" href="static/stylesheet_title.css" />
</head>
<body>
<div id="back">
☜
</div>
<div id="main">
<div id="title">
<img id="image" src="static/title.png" />
</div>
<div id="menu">
<div id="buttons">
<a href = "index.html">
<div id="button_start" class="b">
New Game
</div>
</a>
<div id="button_level" class="b">
Choose Level
</div>
<a href = "htp.html">
<div id="button_htp" class="b">
How to play
</div>
</a>
</div>
</div>
<div id="level">
<div id="easy">
<div id="eb">easy</div>
<div id="el">
<div id="l3" style="display:inline">
<a href="index.html?level=3">
<img class="l" src="static/map03.jpg"/>
</a>
</div>
<div id="l8" style="display:inline">
<a href="index.html?level=8">
<img class="l" src="static/map08.jpg"/>
</a>
</div>
<div id="l9" style="display:inline">
<a href="index.html?level=9">
<img class="l" src="static/map09.jpg"/>
</a>
</div>
</div>
</div>
<div id="meduim">
<div id="mb">meduim</div>
<div id="ml">
<div id="l1" style="display:inline">
<a href="index.html?level=1">
<img class="l" src="static/map01.jpg"/>
</a>
</div>
<div id="l2" style="display:inline">
<a href="index.html?level=2">
<img class="l" src="static/map02.jpg"/>
</a>
</div>
<div id="l4" style="display:inline">
<a href="index.html?level=4">
<img class="l" src="static/map04.jpg" />
</a>
</div>
</div>
</div>
<div id="hard">
<div id="hb">hard</div>
<div id="hl">
<div id="l6" style="display:inline">
<a href="index.html?level=6">
<img class="l" src="static/map06.jpg" />
</a>
</div>
<div id="l5" style="display:inline">
<a href="index.html?level=5">
<img class="l" src="static/map05.jpg"/>
</a>
</div>
<div id="l7" style="display:inline">
<a href="index.html?level=7">
<img class="l" src="static/map07.jpg"/>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>