-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (109 loc) · 4.48 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<link rel="stylesheet" href="MasonSerif.ttf">
<link href="https://fonts.googleapis.com/css?family=IM+Fell+English+SC" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="queries.css">
<link rel="stylesheet" type="text/css" href="sources/ionicons-2.0.1%20(1)/ionicons-2.0.1/css/ionicons.css">
<script src="https://use.fontawesome.com/c8ea31cdac.js"></script>
<script type="text/javascript" src="main.js"></script>
<title>Memory Matching Game</title>
</head>
<body>
<header>
<div class="row">
<div class="col-md-2 col-sm-2 col-2">
<img src="img/logo2.gif" id="logo">
</div>
<div class="col-md-offset-1 col-md-10 col-sm-offset-1 col-sm-10 top">
<div id='main_title'>
<img src="img/Gwent_logo.png">
</div>
<a href="#" class="setting">Settings</a>
<a href="https://conmeconte.com" target="__blank">Portfolio</a>
</div>
</div>
</header>
<section class="game_panel">
<div class="row">
<div class="status">
<h2>Status</h2>
<div class="games-played">
<h4 class="label">Games Played</h4>
<h5 class="value">-</h5>
</div>
<div class="attempts">
<h4 class="label">Attempts</h4>
<h5 class="value">-</h5>
</div>
<div class="accuracy">
<h4 class="label">Accuracy</h4>
<h5 class="value">-</h5>
</div>
<div class="points">
<h4 class="label">Points</h4>
<h5 class="value">-</h5>
</div>
<button class="reset">Reset Game</button>
</div>
<div class="game-area">
<div class="card_row"></div>
</div>
<!-- The Modal -->
<div id="winModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>You Win!</h2>
<div class="games-played">
<h4 class="label">Games Played</h4>
<h5 class="value">-</h5>
</div>
<div class="attempts">
<h4 class="label">Attempts</h4>
<h5 class="value">-</h5>
</div>
<div class="accuracy">
<h4 class="label">Accuracy</h4>
<h5 class="value">-</h5>
</div>
</div>
</div>
<div id="rulesModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>Game Rules</h2>
<div>
<h4>There are 9 pairs of matching cards.</h4>
<h4>Try to match them.</h4>
</div>
</div>
</div>
<div id="settingModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>Settings</h2>
<a href="#" class="sounds">Music <i class="fa fa-volume-off" aria-hidden="true"></i></a>
<a href="https://conmeconte.com" target="__blank">My portfolio</a>
</div>
</div>
</section>
<section class="sound">
<audio id="ost">
<source src="sound/01%20Adam%20Skorupa%20-%20'Tales%20of%20The%20Witcher'.mp3" type="audio/mpeg">
</audio>
</section>
<img src="img/pop-out.PNG" id="pop-out">
<script src='cardFiles.js'></script>
<script src='controller.js'></script>
<script src='view.js'></script>
<script src='model.js'></script>
</body>
</html>