-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.67 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Block Memory Game</title>
<meta name="description" content="How many levels can you accomplish?">
<meta name="keywords" content="design,programming,develop,developer,development,responsive,portfolio,front-end,html,css,sass,vanilla,js,javascript,game,memory">
<meta name="author" content="Ray Chang">
<link rel="icon" href="https://avatars.githubusercontent.com/u/39514595?s=32">
<link rel="stylesheet" href="./css/style.min.css">
</head>
<body>
<div class="wrapper">
<section class="infos">
<h1 class="title">Block Memory Game</h1>
<h2 class="status">Click in the flashing order</h2>
</section>
<section class="columns">
<section class="row">
<section class="block block1" id="1"></section>
<section class="block block2" id="2"></section>
</section>
<section class="row">
<section class="block block3" id="3"></section>
<section class="block block4" id="4"></section>
</section>
<section class="row">
<ul class="inputProgress">
<li class="circle"></li>
<li class="circle"></li>
<li class="circle"></li>
<li class="circle"></li>
</ul>
</section>
</section>
</div>
<section class="endWindow hide">
<p class="memoryLevel"></p>
<button class="restart">Try Again</button>
</section>
<script src="./js/script.min.js"></script>
</body>
</html>