-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatch-words-pics.html
88 lines (81 loc) · 2.84 KB
/
match-words-pics.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Elephluent</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="static/stylesheets/base.css">
<link rel="stylesheet" href="static/stylesheets/matching.css">
<link rel="stylesheet" href="static/stylesheets/game.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<link rel="stylesheet" href="static/stylesheets/animate.css">
<style>
#game-name { background-color: #ff6f85; }
#module-name { border-bottom: 5px solid #ff6f85; }
.grid-container {
horiz-align: center;
display: grid;
grid-template-columns: auto auto auto;
padding: 10px;
grid-gap: 20px 30px;
}
.grid-item {
/*border: 30px solid rgba(0, 0, 0, 0.8);*/
/*background-color: rgba(66, 255, 76, 0.8);*/
padding: 20px;
font-size: 30px;
text-align: center;
border: 0;
}
</style>
<script src="static/js/jquery-3.3.1.min.js"></script>
<script src="static/js/base.js"></script>
<script src="static/js/language-codes.js"></script>
<script src="static/js/update-email.js"></script>
<link rel="shortcut icon" type="image/png" href="static/img/logo.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/core.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/hmac.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/sha1.js"></script>
<script src="static/js/matching-pics.js"></script>
<script src="static/js/update-progress.js"></script>
</head>
<body>
<header>
<div id="name">
<div id="logo" class="scale-up" >
<a href="index.html"><img src="static/img/logo.png"></a>
</div>
</div>
<div id="account">
</div>
</header>
<main>
<div id="game-info">
<div class="text">
<h1 id="game-name">Matching Word to Image</h1>
</div>
<div class="text">
<h2 id="module-name"></h2>
</div>
</div>
<div id="game">
<div id="instruction" class="text">
<p>Select the boxes that correspond to each other.</p>
</div>
<div id="board" class="grid-container">
</div>
</div>
<div id="overlay">
<div class="overlay-box" id="continue" align="center">
<div>
<img src="static/img/good_job.jpg">
</div>
<h1>Congratulations! You've matched all of the words correctly!</h1>
<a id="continue-button" class="button btn-grey" >Continue</a>
</div>
</div>
</main>
</body>
</html>