-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (28 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/styles/LandingStyles.css">
<title>Below the wings</title>
</head>
<body style="margin: 0;">
<div id=PageWrapper>
<img id=logo class=centerlogo src="resources/images/LogoBelow.png"/>
<img id=backimg src="resources/images/airplanes_1.jpg"/>
<div id=locationselect class=centeritems>
<form action="/top_view.html">
<select class="ddoption" name="depart">
<option value="" disabled selected>Where from?</option>
<option value="Boston">Boston</option>
</select>
<br><br>
<select class="ddoption" name="arrive">
<option value="" disabled selected>Where to?</option>
<option value="LA">LA</option>
</select>
<br><br>
<input type="submit" class=ddoption value="Submit">
</form>
</div>
</div>
</body>
</html>