-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamePage.html
More file actions
67 lines (63 loc) · 2.43 KB
/
gamePage.html
File metadata and controls
67 lines (63 loc) · 2.43 KB
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 lang="en">
<head>
<title>Game</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/game.css">
<!-- import the webpage's javascript file -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="/game.js"></script>
</head>
<body>
<h1>
Game
</h1>
<a href="index.html"><button id="menuButton">Menu</button></a>
<br>
<div class="pplUI">
<img class ="policeImg" src="https://image.flaticon.com/icons/png/512/32/32438.png" id="people">
<p id="numberOfPeople">0</p>
</div>
<div class="policeUI">
<img class="policeImg" src="https://cdn.glitch.com/659a004c-b854-4d83-a61d-d6d9c501eb61%2FUntitled8_20200207124135.png?v=1581108196104" id="police">
<p id="numberOfPolice">0</p>
</div>
<div id="my-timer">
<h3>Time Left: <b id="show-time"></b>seconds </h3>
</div>
<br>
<br>
<div id="gridContainer">
<div class="one" id="one"></div>
<div class="one" id="two"></div>
<div class="one" id="three"></div>
<div class="one" id="four"></div>
<div class="one" id="five"></div>
<div class="one" id="six"></div>
<div class="one" id="seven"></div>
<div class="one" id="eight"></div>
<div class="one" id="nine"></div>
<div class="one" id="ten"></div>
<div class="one" id="eleven"></div>
<div class="one" id="twelve"></div>
<div class="one" id="thirteen">
<img id="base" src="https://www.pinclipart.com/picdir/middle/1-16623_political-clipart-government-official-city-hall-icon-png.png">
</div>
<div class="one" id="fourteen"></div>
<div class="one" id="fifteen"></div>
<div class="one" id="sixteen"></div>
<div class="one" id="seventeen"></div>
<div class="one" id="eighteen"></div>
<div class="one" id="nineteen" ></div>
<div class="one" id="twenty"></div>
<div class="one" id="twentyone"></div>
<div class="one" id="twentytwo"></div>
<div class="one" id="twentythree"></div>
<div class="one" id="twentyfour"></div>
<div class="one" id="twentyfive"></div>
</div>
</body>
</html>