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.
 
 
 

24 lines
767 B

<html>
<head>
<title>Revenge for the Nerd</title>
<link rel = "stylesheet" href = "CSS/EndLayout.css">
<link rel = "stylesheet" href = "CSS/AllPages.css">
<script type = "text/javascript" src = "JS/Endings.js"></script>
</head>
<body onLoad = "GetEnding()">
<div id = "Container">
<div id = "ContentPane"></div>
<div id = "ScoreContainer">
<div id = "ScoreHeader">FINAL SCORE</div>
<div id = "ScoreCounter">0</div>
<div id = "ExitButton">
<center>
<input type = 'Button' name = 'btnAnswer' value = 'There is nothing more to see here. Click to leave.' onClick = 'window.close()'>
</center>
</div>
</div>
</div>
</body>
</html>