-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (34 loc) · 1013 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game</title>
<link href="css/main.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee" rel="stylesheet">
</head>
<body>
<h1>MEMORY GAME</h1>
<div class="bar">
<div class="bar-item">
<p id="stars"></p>
</div>
<div class="bar-item">
<p id="timer">00:00</p>
</div>
<div class="bar-item">
<p id="moves">0 moves</p>
</div>
</div>
<div class="container" id="container">
</div>
<div id="result">
<h2>Congratulations</h2>
<i></i>
<button onclick="newGame()">Play again</button>
</div>
</body>
<script src="js/card.js"></script>
<script src="js/app.js"></script>
</html>