-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 810 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
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="gameWindow">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="data">
<select class="picSelect">
<option value="1">Obraz 1</option>
<option value="2">Obraz 2</option>
<option value="3">Obraz 3</option>
</select>
<button class="startBtn">START!</button>
</div>
<div class="hintWindow">
<div class="hint">HINT</div>
</div>
</div>
<script src="js/out.js"></script>
</body>
</html>