forked from hakimel/Holobox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (37 loc) · 1.13 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Holobox</title>
<!-- This viewport is baaad practice. Look away. -->
<meta name="viewport" content="width=700, initial-scale=0.3">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<link href='http://fonts.googleapis.com/css?family=Molengo' rel='stylesheet' type='text/css'>
<body>
<div id="world">
<div id="room">
<!-- The back wall which holds our content -->
<div id="back">
<h1>Holobox</h1>
<p>
This box adapts to the orientation of your device.
</p>
<p>
Requires webkit on a mobile device, such as iPhone.
</p>
</div>
<!-- The translucent front wall -->
<div id="front"></div>
<!-- The remaining walls of the box -->
<div id="wall-left"></div>
<div id="wall-right"></div>
<div id="wall-top"></div>
<div id="wall-bottom"></div>
<!-- A plane below the box which is used to simulate a shadow -->
<div id="shadow"></div>
</div>
</div>
<script src="js/holobox.js"></script>
</body>
</html>