-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (39 loc) · 1.59 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
49
50
51
52
53
<!DOCTYPE html> <html lang="en">
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700,900" rel="stylesheet">
<link rel="stylesheet" href="resources/css/reset.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="resources/css/style.css" type="text/css">
<title>Match Game</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<h1>Match Game</h1></br>
<h4>Rules</h4>
<p>Click on a card to reveal the number on the other side. Click on a second to try and find a match to the first.
If you succeed, the pair will be removed from play. If not, try again!</p><br/>
<h4>How to win</h4>
<p>You win when all the pairs have been found.</p> </br>
<h4>Reset</h4>
<p>Refresh your browser to reset the game.</p>
</br>
</br>
</div>
<div id="game" class="col-xs-12 col-sm-12 col-md-9 col-lg-9"/>
</body>
</html>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="./resources/js/match-game.js"></script>
<script type="text/javascript" src="./resources/js/tests.js"></script>
</body>
</html>