-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhide-and-seek.html
58 lines (55 loc) · 2.27 KB
/
hide-and-seek.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
<!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/game.css">
<link rel="stylesheet" href="static/stylesheets/hide-and-seek.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<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="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="static/js/pixi/pixi.min.js"></script>
<script src="static/js/pixi/pixi-layers.js"></script>
<script src="static/js/pixi/pixi-lights.js"></script>
<script src="static/js/hide-and-seek.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">Hide and Seek</h1>
</div>
<!-- <div class="text">
<h2 id="module-name"></h2>
</div> -->
</div>
<div id="game">
</div>
<div id="overlay">
<div id="info" class="overlay-box">
</div>
</div>
</main>
</body>
</html>