-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 4.73 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 4.73 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title>Horse memory</title>
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Horse Memory" name="description">
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Mukta+Mahee" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel=
"stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel=
"stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/wickedcss.min.css" rel="stylesheet">
</head>
<body>
<!-- modal html is here -->
<div class="modal fade" id="winnerModal" role="dialog" tabindex="-1">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">We have a winner here!</h4>
</div>
<div class="modal-body">
<p id="you-won"></p>
</div>
<div class="modal-footer">
<button class="btn btn-default restart-game" data-dismiss="modal" type=
"button">Restart</button> <button class="btn btn-default" data-dismiss="modal"
type="button">Close</button>
</div>
</div>
</div>
</div><!-- modal html is over -->
<header class="container-fluid justify-content-center">
<div class="row align-items-center justify-content-between">
<h1>Memory game</h1>
<div id="timer">
00:00:00
</div>
<div class="moves"></div>
<div id="stars">
<i class="fas fa-star star1"></i><i class="fas fa-star star2"></i><i class=
"fas fa-star star3"></i>
</div><button class="shuffle" type="button">Shuffle</button> <button class="start-game"
type="button">(Re)Start game</button>
</div>
</header>
<main>
<section class="game-area">
<h2>...with horses!</h2>
<div class="card animated"><img alt="horse in sunset" src="img/horse2.jpg"></div>
<div class="card animated"><img alt="horse in sunset" src="img/horse2.jpg"></div>
<div class="card animated"><img alt="horse in front of mountains" src=
"img/horse3.jpg"></div>
<div class="card animated"><img alt="horse in front of mountains" src=
"img/horse3.jpg"></div>
<div class="card animated"><img alt="horse behind some bushes" src=
"img/horse1.jpg"></div>
<div class="card animated"><img alt="horse behind some bushes" src=
"img/horse1.jpg"></div>
<div class="card animated"><img alt="horse head" src="img/horse4.jpg"></div>
<div class="card animated"><img alt="horse head" src="img/horse4.jpg"></div>
<div class="card animated"><img alt="horse mouth" src="img/horse5.jpg"></div>
<div class="card animated"><img alt="horse mouth" src="img/horse5.jpg"></div>
<div class="card animated"><img alt="white horse head" src="img/horse6.jpg"></div>
<div class="card animated"><img alt="white horse head" src="img/horse6.jpg"></div>
<div class="card animated"><img alt="hip horse with flowers" src=
"img/horse7.jpg"></div>
<div class="card animated"><img alt="hip horse with flowers" src=
"img/horse7.jpg"></div>
<div class="card animated"><img alt="two horses hugging" src="img/horse8.jpg"></div>
<div class="card animated"><img alt="two horses hugging" src="img/horse8.jpg"></div>
<div class="card animated"><img alt="white horse in front of mountains" src=
"img/horse9.jpg"></div>
<div class="card animated"><img alt="white horse in front of mountains" src=
"img/horse9.jpg"></div>
<div class="card animated"><img alt="running horse" src="img/horse10.jpg"></div>
<div class="card animated"><img alt="running horse" src="img/horse10.jpg"></div>
</section>
</main>
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js">
</script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js">
</script>
<script src="js/easytimer.min.js">
</script>
<script src="js/app2.js">
</script>
</body>
</html>