-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.85 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- load icon font -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- content goes here -->
<div>
<div>
<h1>Room Map</h1>
<div>Right: <i class="fa fa-arrow-right fa-2x"></i></div>
<div>Left: <i class="fa fa-arrow-left fa-2x"></i></div>
<div>Down: <i class="fa fa-arrow-up fa-2x"></i></div>
<div>Up: <i class="fa fa-arrow-down fa-2x"></i></div>
<div style="display: inline-flex">
<div style="width: 5em; height: 0.5em; background-color: blue;"></div>
<div style="width: 1em; height: 0.5em;"></div>
<div style="width: 68em; height: 2em; background-color: red; text-align: center;"><span style="color: white;">Front of Classroom</span></div>
<div style="width: 1em; height: 0.5em;"></div>
<div style="width: 5em; height: 0.5em; background-color: blue;"></div>
</div>
<div id="directions" style="height: 30em;">
<div style="position: fixed; top: 40em; right: 13em; width: 2.5em; height: 5em; background-color: brown; color: white;">Door</div>
<div style="position: fixed; top: 40em; right: 16em;"><i class="fa fa-arrow-left fa-2x"></i></div>
</div>
<div style="display: inline-flex">
<div style="width: 80em; height: 0.5em; background-color: blue;"></div>
</div>
<div style="display: inline-flex">
<div style="width: 80em; height: 3em; background-color: black; color: white; text-align: center;">Road/Hallway/Landmark/etc.</div>
</div>
</div>
</div>
</body>
</html>