An old college ICT project (for the module "Client-side Customisation of Web Pages") in which I produced a small interactive murder-mystery adventure game using HTML, CSS and JavaScript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
921 B

<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>