-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonp.html
56 lines (48 loc) · 2.38 KB
/
onp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>Olympic National Park</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body>
<div class="flex">
<div id="sidebar">
<div class="container">
<div class="header">
<h1>Summer 2018 Trips Visualized</h1>
<h2>Olympic National Park</h2>
<h3>06/15/2018 - 06/17/2018</h3>
</div>
<p>Camping, hiking, and rafting by Staircase Campground in Olympic National Park!</p>
<ol>
<li>Three - ish hour drive after work on Friday from Seattle to ONP</li>
<li>Hike on a nearby trail on Saturday morning</li>
<li>Short drive to lake</li>
<li>Raft in the lake</li>
<li>Drive to grocery store for dinner</li>
<li>Drive back to campgrounds</li>
<li>Drive to Seattle on Sunday morning</li>
</ol>
<img src="./images/onp/1.jpg">
<img src="./images/onp/2.jpg">
<img src="./images/onp/3.jpg">
<img src="./images/onp/4.jpg">
<img src="./images/onp/5.jpg">
<img src="./images/onp/6.jpg">
</div>
</div>
<div id="map"></div>
</div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<script src="https://d3js.org/d3.v4.min.js" charset="utf-8"></script>
<script src="./js/map.js"></script>
<script src="./js/onp.js"></script>
</body>
</html>