-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaps.html
44 lines (44 loc) · 1.84 KB
/
maps.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<title>HackNC maps</title>
<link rel="stylesheet" type="text/css" href="./stylesheets/app.css" media="screen" />
<link rel="icon" href="./favicon.ico" type="image/x-icon"/>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,700' rel='stylesheet' type='text/css'>
<script src="./javascript/jquery-1.11.1.min.js"></script>
<script src="./javascript/css_browser_selector.js" type="text/javascript"></script>
</head>
<body class="app" id="prizes">
<div>
<h1>Area maps</h1>
<div class="content">
<h2>Fred Brooks Building and Sitterson Hall</h2>
<a href='./images/maps/sitterson_level_0.jpg' target="_blank">
<img src='./images/maps/sitterson_level_0.jpg' alt='Sitterson level 0'/>
</a>
<a href='./images/maps/sitterson_level_1.jpg' target="_blank">
<img src='./images/maps/sitterson_level_1.jpg' alt='Sitterson level 1'/>
</a>
<h2>Phillips Hall</h2>
<a href='./images/maps/phillips_level_1.jpg' target="_blank">
<img src='./images/maps/phillips_level_1.jpg' alt='Phillips level 1'/>
</a>
<a href='./images/maps/phillips_level_2.jpg' target="_blank">
<img src='./images/maps/phillips_level_2.jpg' alt='Phillips level 2'/>
</a>
<h2>Carroll Hall</h2>
<a href='./images/maps/carroll_level_0.jpg' target="_blank">
<img src='./images/maps/carroll_level_0.jpg' alt='Carroll level 0'/>
</a>
<a href='./images/maps/carroll_level_1.jpg' target="_blank">
<img src='./images/maps/carroll_level_1.jpg' alt='Carroll level 1'/>
</a>
</div>
</div>
<script src="./javascript/app.js"></script>
</body>
</html>