This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.htm
44 lines (41 loc) · 1.49 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="description" content="Elevator simulator built to demonstrate AS3JS" />
<meta name="keywords" content="elevator, js, as3, actionscript, importjs" />
<title>Elevator Engine</title>
<link rel="stylesheet" type="text/css" href="css/elevator.css" />
<script type="text/javascript" src="lib/jquery-1.10.2.min.js"></script>
<!--[if lt IE 9]>
<script type="text/javascript">
document.createElement("nav");
document.createElement("header");
document.createElement("footer");
document.createElement("section");
document.createElement("aside");
document.createElement("article");
</script>
<![endif]-->
</head>
<body>
<a href="flash.htm">Click here for Flash version</a>
<div class="container">
<div id="sidebar">
<button class="btn-pause">Pause</button>
<h3>Building Info</h3>
<table class="floor-view">
<tbody>
</tbody>
</table>
</div>
<div id="viewport">
<table class="elevator-view">
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript" src="elevator.js"></script>
</body>
</html>