-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMemory.html
More file actions
43 lines (39 loc) · 1.34 KB
/
Copy pathMemory.html
File metadata and controls
43 lines (39 loc) · 1.34 KB
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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game with JavaScript</title>
<link rel="stylesheet" href="stylememory.css">
<link rel="stylesheet" href="style.css">
<script src="scriptmemory.js" defer></script>
</head>
<body class="all">
<div class="bg">
<div class="Navbarmem">
<ul class="ulnavbar">
<li class=" linavbar"><a class = "menunavbar" href="index.html">Home</a></li>
<li class=" linavbar"><a class= "menunavbar"href="info.html">Info</a></li>
<li class="linavbar"><a class="menunavbar" href="#"></a></li>
</ul>
</div>
<br></br>
<div class="game">
<ul class="controls">
<button>Start</button>
<form>
<input class="RESTART" value="Retry" onclick="history.go(0)" type="button">
</form>
<div class="stats">
<div class="moves">0 moves</div>
<div class="timer">Time: 0 sec</div>
</ul>
<ul class="board-container">
<div class="board" data-dimension="4"></div>
<div class="win">You won!</div>
</ul>
</div>
</div>
</body>
</html>