-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrip.html
62 lines (56 loc) · 3.65 KB
/
trip.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Trip Planning</title>
<!-- Import Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navbar Section -->
<!-- Borrowed this code (which I wrote) from another project of mine and edited it-->
<div class="fixed-top">
<div class="container-fluid" id="navbar">
<div class="row">
<div class="col">
<h2 id="headerHeader">Weather in Hawaii</h2>
<nav class="navbar navbar-expand-lg navbar-dark" id="navbar">
<a class="navbar-brand" href="#">Menu</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">Home</a>
<a class="nav-item nav-link" href="about.html">About the Dataset</a>
<a class="nav-item nav-link" href="report.html">Weather Report</a>
<a class="nav-item nav-link active" href="trip.html">Planning My Trip<span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="api.html">API</a>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<h1>Planning My Personal Trip to Hawaii</h1>
<p>Part of this assignment was to calculate the likely temperature for a theoretical trip to Hawaii for myself. The dates I selected for my trip were: 6/28/2018-07/04/2018.</p>
<p>Results can be seen in the chart to the right. Barring any unusual weather patterns, I can reasonably expect the average temperature for my trip to be 75°F. As you can see from the error bars, the recorded temperature has reached a minimum of 67°F and a maximum of 82°F, so it seems reasonable to prepare for temperatures to be in the 70s for the majority of my trip.</p>
</div>
<div class="col">
<a href="images/expectedTemp.png"><img src="images/expectedTemp.png"></a>
</div>
</div>
</div>
<!-- Import stuff that Bootstrap needs-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
</body>
</html>