-
Notifications
You must be signed in to change notification settings - Fork 2
/
studyAreas.html
120 lines (108 loc) · 4.08 KB
/
studyAreas.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE HTML PUBLIC >
<html\ xml:lang="en" lang="en">
<head>
<title>WiFly</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content=" wifly " />
<meta name="description" content=" GWU wifi speed, search and compile database " />
</head>
<body>
<div id="topcontent">
<p id="content" align="center">
<span id="mobile">
<a href="studyAreas.html">Wifi Study Areas</a>
<a href="displayspeeds2.php">View all Speeds</a>
<a href="bestlocation.html">Best Speed Near You</a>
<a href="squadfree/index.html">About Us</a>
</span>
<span id="desktop">
<a href="studyAreas.html">Wifi Study Areas</a>
<a href="displayspeeds2.php">View all Speeds</a>
<a href="bestlocation.html">Best Speed Near You</a>
<a href="userEnterInfo.html">Add Speed Data</a>
<a href="squadfree/index.html">About Us</a>
</span>
</p>
<script>
window.onload = function() {
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
document.getElementById("desktop").style.display = 'none';
document.getElementById("mobile").style.display = 'block';
}
else{
document.getElementById("desktop").style.display = 'block';
document.getElementById("mobile").style.display = 'none';
}
}
</script>
<h2 align="center">
WiFly</h2>
</div>
<div id="box">
<h3 align="center">
Study Areas</h3>
</br>
</br>
<!-- map code-->
<div id="column" style="float:left; margin:0; width:66%;">
<p align="center">
<img src="http://3luminaries.com/assets/img/GWU_map1.jpg" width="700" height="450" border="0" alt="wifi icon" usemap="#graphmap">
<map name="graphmap">
<area shape="rect" coords="335,210,370,240" href="calculate.html" alt="GELMAN">
<area shape="rect" coords="345,200,380,210" href="calculate.html" alt="Starbucks">
<area shape="rect" coords="370,120,395,185" href="calculate.html" alt="Phillips">
<area shape="rect" coords="270,130,320,190" href="calculate.html" alt="SEH">
</map>
</p>
</div>
<!-- study spaces list!!! -->
<form class="calculator" action="calculate.php">
<div id="columninfo" style="float:left; margin:0;width:30%;">
<p align="center">
<h3 align="left">
Record a Speed</h3>
</p>
</br>
<p align="left">
<a href="calculate.html">
Estelle and Melvin Gelman Library</a>
</p>
</br>
<p align="left">
<a href="calculate.html">
Starbucks (Gelbucks)</a>
</p>
</br>
<p align="left">
<a href="calculate.html">
Phillips Hall</a>
</p>
</br>
<p align="left">
<a href="calculate.html">
Science and Engineering Hall (SEH)</a>
</p>
</div>
</br>
</div>
</form>
<div id="topcontent">
<p align="center">
<a href="index2.html">
Return to Homepage</a>
</p>
</div>
<div id="bottomcontent">
<hr>
</br>
<p>
Created by Si Chen, Nadia Chilmonik, Maria Sinagra, and Leslie Ogu.
<p>
Databases & Team Projects Spring 2015 Final Project: Wi-Fly.
<p>
MIT License (MIT) Copyright (c) 2015 by Si Chen, Nadia Chilmonik, Maria Sinagra, and Leslie Ogu. Source code available on <a href="https://github.com/sichen08/WiFly/"> GitHub</a>.
</p>
</div>
</body>
</html>