-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
134 lines (126 loc) · 4.26 KB
/
info.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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>Park Information</title>
<link
href="https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
href="https://img.icons8.com/carbon-copy/100/000000/national-park.png"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<!-- nav bar -->
<nav>
<div class="nav-wrapper">
<img
src="https://img.icons8.com/carbon-copy/100/000000/national-park.png"
width="50"
style="margin: 10px 10px;"
/>
<a href="index.html" class="brand-logo center">Perfect Park</a>
<ul id="nav-mobile" class="left hide-on-med-and-down">
<!-- <li><a href="">About Us</a></li> -->
</ul>
</div>
</nav>
<!-- Main header -->
<header>
<div class="container-fluid">
<!-- the h1 needs to be the name of the park chosen -->
<h1 id="state-name"></h1>
<h3>Info to help plan your trip!</h3>
</div>
</header>
<!-- End Main heading -->
<!-- start map section -->
<h5>Map:</h5>
<div id="map"></div>
<!-- end map section -->
<!-- Start forecast container -->
<div class="forecast container">
<h6>5 Day Forecast!</h6>
<!-- Start row -->
<div class="row ">
<div class="carousel carousel-slider center">
<div class="carousel-fixed-item center">
</div>
<div class="carousel-item blue white-text" href="#one!">
<h2 id="date1">June 3rd, 2020</h2>
<img class="icon1">
<p class="temp1 white-text"></p>
</div>
<div class="carousel-item blue white-text" href="#two!">
<h2 id="date2"></h2>
<img class="icon2">
<p class="temp2 white-text"></p>
</div>
</div>
<!-- End forecast container -->
<!-- start photos section -->
<div class="container">
<div class="row">
<h5>Photos from the Park!</h5>
<div class="photos-display">
<div class="slider">
<ul class="slides">
<li>
<img class="appendPhoto1"> <!-- random image -->
</li>
<li>
<img class="appendPhoto2"> <!-- random image -->
</li>
<li>
<img class="appendPhoto3"> <!-- random image -->
</li>
<li>
<img class="appendPhoto4"> <!-- random image -->
</li>
</ul>
</div>
<div class="carousel-item blue white-text" href="#three!">
<h2 id="date3"></h2>
<img class="icon3">
<p class="temp3 white-text"></p>
</div>
<div class="carousel-item blue white-text" href="#four!">
<h2 id="date4"></h2>
<img class="icon4">
<p class="temp4 white-text"></p>
</div>
<div class="carousel-item blue white-text" href="#five!">
<h2 id="date5"></h2>
<img class="icon5">
<p class="temp5 white-text"></p>
</div>
</div>
</div>
</div>
<!-- End photos container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBcw9pJVFgt3Cf1WVVXPeepdHhCKO0rMns&callback=initMap"
type="text/javascript"></script>
<script src="assets/script.js"></script>
</body>
</html>