-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflight.html
54 lines (44 loc) · 1.75 KB
/
flight.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OlaFlight</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Shortcut Icon" href="image/icon.png">
<link rel="stylesheet" href="https://use.typekit.net/cmn8rcr.css">
<link rel="stylesheet" href="style/seatchart.css">
<link rel="stylesheet" type="text/css" href="style/flight-style.css">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=VT323">
<script src="js/moment.js"></script>
<script type="text/javascript" src="js/seatchart.js"></script>
<script src="js/flight-script.js"></script>
</head>
<body id="hp">
<div class="grid">
<div class="title_div" id="blank">
<img id="title-img" src="./image/hp-logo.png" alt="hp-logo">
<button id="view_trip">View My Trips</button>
</div>
<div class="content_div">
<div class="wrap" id="first-wrap">
<span>I'm looking for a flight  <i class="fas fa-plane"></i></span>
</div>
<div class="wrap">
<span>on</span>
<input type="text" id="datepicker">
</div>
<div class="wrap">
<span>from</span>
<input id="depart" type="text" list="airport" autocomplete=off>
<span>to</span>
<input id="arrive" type="text" list="airport" autocomplete=off>
</div>
<button class="search-btn">Find Flights</button>
</div>
</div>
</body>
</html>