-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (30 loc) · 1.12 KB
/
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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Memory</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<h1>Memory</h1>
<div class="menu">
<button class="btn btn-light" data-size="2">2x2</button>
<button class="btn btn-light" data-size="4">4x4</button>
<button class="btn btn-light" data-size="6">6x6</button>
<button class="btn btn-light" data-size="8">8x8</button>
</div>
<div class="game">
<div class="memory-game">
</div>
<div class="endgame z-3" id="overlay">
<img src="img/tu.png" alt="Success!">
</div>
</div>
</div>
<script src="js/game.js" type="module"></script>
</body>
</html>