-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (42 loc) · 1.51 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<html>
<head>
<link href="css/bootstrap-combined.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/socket.io.min.js"></script>
</head>
<body>
<h2>UI Interface</h2>
<div class="wrapper">
<div id="cubeContainer">
<div id="cube">
<div class="face one">
Top
</div>
<div class="face two">
<img src="images/front.jpg" style="height: 380px; width: 480px;" />
</div>
<div class="face three">
<img src="images/left.jpg" style="height: 380px; width: 480px;" />
</div>
<div class="face four">
<img src="images/back.jpg" style="height: 380px; width: 480px;" />
</div>
<div class="face five">
<img src="images/right.jpg" style="height: 380px; width: 480px;" />
</div>
<div class="face six">
Bottom
</div>
</div>
</div>
</div>
</body>
</html>