-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Memory Game</title>
<meta name="description" content="memory game FEND udacity">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container" id="gameSection">
<header>
<h1>Memory Game</h1> </header>
<section class="scorePanel">
<ul class="stars" id="stars"> </ul> <span id="moves"></span>
<div class="textRight">
<span class="timer" id="timer">00:00:00</span>
<div class="reset">
<i class="fa fa-repeat" id="resetButton"></i>
</div>
</div>
</section>
<ul class="deck" id="deck"> </ul>
</div>
<div class="container" id="sucess-result"></div>
<script type="text/javascript" src="js/jquery.js"></script>
<script src="js/easytimer.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>