-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGame.html
More file actions
executable file
·29 lines (25 loc) · 921 Bytes
/
Game.html
File metadata and controls
executable file
·29 lines (25 loc) · 921 Bytes
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
<html>
<head>
<title>Bear: Photo Finished</title>
<link rel = "stylesheet" href = "CSS/AllPages.css">
<link rel = "stylesheet" href = "CSS/GameLayout.css">
<script type = "text/javascript" src = "JS/Rooms.js"></script>
<script type = "text/javascript" src = "JS/Clues.js"></script>
<script type = "text/javascript" src = "JS/GamePage.js"></script>
</head>
<body onLoad="InitialisePage()">
<div id = "Container">
<div id = "Logo">
<img class = "LogoImage" src = "Images/Logo.png">
</div>
<div id = "Banner">
<h1>Photo Finished</h1>
<h2>A Case for Bear<h2>
</div>
<div id = "FeedbackArea"></div>
<textarea id = "NotepadArea">Use this to note down anything you find in case you forget it.</textarea>
<div id = "MapArea"></div>
<div id = "SuspectArea"></div>
</div>
</body>
</html>