-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (30 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Octocat Memory Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class='head'>
<div class='time'>Time: <span class="min">00</span>:<span class="sec">00</span></div>
<div class='start'>Start Game</div>
<div class='move'>Moves: <span class="c_move">0</span></div>
</div>
<br>
<br>
<div class="room" align="center"></div>
<div class=board>
<p class="greet">Voila</p>
<p class="scr">Your Score</p>
<p class='scr_time'>Time : <span class='scr_min'>00</span>:<span class='scr_sec'>00</span> </p>
<p class = 'scr_move'>Moves :<span class='scr_moves'> 00</span></p>
<button type="button" class='again'> Again </button>
<p class="me">Developed by Mayur Birle</p>
</div>
<br><br>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>