-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.36 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.36 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
<!-- HTML holds text -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Matching Game</title>
<!-- import the jquery library -->
<meta name="description" content="">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="css/app.css">
<meta name="viewport" content="width = device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Matching Game</h1>
</header>
<div class = "score_panel">
<span id = "moves"></span>
Moves
<span id = "time"></span>
Timer
<div class = "repeat">
<img id="repeat_img" alt = "refresh" src = "img/refresh.png">
</div>
<div class = "starDiv">
<ul id="star-list">
<li><img class = "star" alt = "star_img" src = "img/star-icon.png"></li>
<li><img class = "star" alt = "star_img" src = "img/star-icon.png"></li>
<li><img class = "star" alt = "star_img" src = "img/star-icon.png"></li>
</ul>
</div>
</div>
<div class="game-box">
<table id="cardCanvas">
</table>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>