-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (29 loc) · 873 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
<!DOCTYPE html>
<html>
<head lang="cs">
<title>Moje hra</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=Bitter:400,700&display=swap&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div>
<img src="images/score.png" alt="Vitamín">
<span id="score">0/6</span>
</div>
<div id="time">
00:00
</div>
</header>
<div id="end">
<p id="message"></p>
<button onclick="location.reload()">Hrát znovu</button>
</div>
<div id="game">
<canvas id="canvas"></canvas>
</div>
<script src="script.js"></script>
</body>
</html>