-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathycescape.html
27 lines (26 loc) · 962 Bytes
/
ycescape.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
<!doctype html>
<html lang="en-US">
<head>
<title>YC Escape</title>
<meta charset="UTF-8">
<meta name="description" content="YC Escape game implemented in Javascript">
<meta name="keywords" content="YC, Young, Colfield, Escape, game">
<meta name="author" content="Cornelis de Mooij">
<link rel="stylesheet" type="text/css" href="./css/ycescape.css">
<script src="./js/ycescape/Location.js"></script>
<script src="./js/ycescape/output.js"></script>
<script src="./js/ycescape/data.js"></script>
<script src="./js/ycescape/buttons.js"></script>
<script src="./js/ycescape/main.js"></script>
</head>
<body>
<div id="ycContainer">
<div id="output">
<div id="output-content"><!--Filled by ycescape.js--></div>
</div>
<div id="input"><!--Filled by ycescape.js--></div>
<div id="menu"><!--Filled by ycescape.js--></div>
</div>
<script>loadIntro();</script>
</body>
</html>