forked from bootconfig/CardMatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (26 loc) · 991 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel ="stylesheet" href="style.css">
<title>Card Match</title>
</head>
<body>
<div>
<p id="time"></p>
</div>
<button class="button" title="Create a new game">New Game</button>
<button class="button" title="Restart current game">Restart</button>
<button class="button" title="Settings">Settings</button>
<select class="button">
<option>Beginner</option>
<option>Moderate</option>
<option>Advanced</option>
</select>
<my-score>Score:</my-score>
<div class="grid-board-container" id="board"></div>
</body>
<script type="module" src="index.js"></script>
<script src="time.js"></script>
</html>