-
Notifications
You must be signed in to change notification settings - Fork 3
/
spel.html
37 lines (29 loc) · 1.03 KB
/
spel.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#062f55">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="image/icon72x72.png">
<link rel="apple-touch-icon" href="image/icon192x192.png">
<title>PWA</title>
</head>
<body>
<h1 class="color-name"></h1>
<div class="color-div">
<button onclick="rightColor('.color-one')" class="color color-one"></button>
<button onclick="rightColor('.color-two')" class="color color-two"></button>
</div>
<div class="color-div">
<button onclick="rightColor('.color-tree')" class="color color-tree"></button>
<button onclick="rightColor('.color-four')" class="color color-four"></button>
</div>
<div class="bottom-border">
<p class="score">Score: 0</p>
<p id="some_div">Time: 15 Sec</p>
</div>
<script src="js/scripts.js"></script>
</body>
</html>