-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestpage.html
More file actions
40 lines (35 loc) · 1.21 KB
/
testpage.html
File metadata and controls
40 lines (35 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test App</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,700" rel="stylesheet" />
<!-- <link href="style.css" rel="stylesheet" /> -->
</head>
<body>
<div id="root"></div>
<h3 id="head"></h3>
<p id="data"></p>
<p id="data2"></p>
<p id="data3"></p>
<script src="getFlightData.js"></script>
<!-- <script src="getWeather.js"></script> -->
<!-- <script>
// var result = findFlight(7792); // searches for flight (1/25)
// flightNumber - destination
// 1653 (1/29) - Chicago ("Snow")
// 6366 (1/28) - Dallas ("Rain")
// 4656 (1/28) - NYC ("Clear")
// 5035 (1/26) - Los Angeles ("Clear")
var result = findFlight(1452); // searches for flight
var weatherItems = getWeather(result[0], result[1]);
console.log(weatherItems);
</script> -->
<script>
console.log(getMoreItems(5035, ["Toothbrush", "Clothes", "Umbrella"]));
</script>
<script></script>
<!-- <script>getFlightData()</script> -->
</body>
</html>