-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (28 loc) · 815 Bytes
/
Copy pathindex.html
File metadata and controls
46 lines (28 loc) · 815 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memory game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="header__inner">
<h1 class="header__heading">Memoji</h1>
</div>
</header>
<main class="main">
<section class="section"></section>
<div class="main__timer"></div>
<div class="modal-overlay modal-overlay_hide">
<div class="modal-wrapper">
<p class="modal-wrapper__title"></p>
<button type="button" class="modal-wrapper__btn">
<span class="modal-wrapper__text">Play again</span>
</button>
</div>
</div>
</main>
<script src="index.js"></script>
</body>
</html>