-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (66 loc) · 2.28 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./resources/css/reset.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 href="https://fonts.googleapis.com/css?family=Work+Sans:400,700,900" rel="stylesheet">
<link rel="stylesheet" href="./resources/css/style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>Match_Game</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-12">
<h1>Match_Game</h1>
<h2>Rules</h2>
<p>Click on a card to reveal the number on the other side. Click on a second card to try and find a match to the first. If you succeed, the pair will be removed from play. If not, try again!</p>
<h2>How To Win</h2>
<p>You win when all pairs have been found.</p>
</div>
<div class="col-md-9 col-xs-12" id="game">
<div class="row">
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
<div class="card col-xs-3">
</div>
</div>
</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>