-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 740 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 740 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>ColorShapeGame</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="menu">
<h1 id="title">Do you want to play ?</h1>
<h2 id="score"></h2>
<button id="play-button" onclick="playGame()">Play</button>
</div>
<div class="game">
<div class="ui">
<h2 id="point">...</h2>
<div class="progress">
<div class="progress-value"></div>
</div>
</div>
<div class="element-list"></div>
</div>
</body>
<script src="main.js"></script>
</html>