-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththru-hikes.html
More file actions
92 lines (87 loc) · 4.85 KB
/
thru-hikes.html
File metadata and controls
92 lines (87 loc) · 4.85 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thru-hikes - lkunik</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="nav-title"><strong>Lewis T. Kunik</strong></li>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="thru-hikes.html" class="active">Thru-hikes</a></li>
</ul>
</nav>
<main>
<section>
<h2>Long-distance hikes I've completed</h2>
<p>I love nature, and I love to walk. Throughout the years, I've been fortunate to complete some amazing multi-month backcountry hikes in some the U.S.' most treasured public lands. Below is just a sampler platter of photos from these epic adventures. </p>
<img src="images/thru_hike_map.png" alt="thru hike map" class="thru-hike-overview">
</section>
<section>
<h2 style="text-align: center;">Pacific Crest Trail</h2>
<figure>
<img src="images/hikes/PCT_highsierra.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Hiking across the snowy southern Sierra Nevada mountains in mid-June, 2017</figcaption>
</figure>
<figure>
<img src="images/hikes/PCT_streamcrossing.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Fording one of the many raging snowmelt streams in the Sierra Nevada, July 2017</figcaption>
</figure>
<figure>
<img src="images/hikes/PCT_clearcut.JPG" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">An early-succession clearcut area affected by tree mortality in Washington, August 2017</figcaption>
</figure>
<figure>
<img src="images/hikes/PCT_eclipse.JPG" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Watching the full solar eclipse from the trail near Mount Jefferson in Oregon, August 2017</figcaption>
</figure>
</section>
<section>
<h2 style="text-align: center;">Hayduke Trail</h2>
<figure>
<img src="images/hikes/Hayduke_slotCanyon.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">One of the many slot canyons of the Hayduke trail, April 2021</figcaption>
</figure>
<figure>
<img src="images/hikes/Hayduke_ledges.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">My hiking partner, Shannon, about to traverse the Red Ledges in Steven's Canyon, Grand Staircase-Escalante National Monument, April 2021</figcaption>
</figure>
<figure>
<img src="images/hikes/Hayduke_pools.jpeg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Navigating through pools of crisp, clear water in Grand Canyon National Park, May 2021</figcaption>
</figure>
<figure>
<img src="images/hikes/Hayduke_GCNP.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">The awe-inspiring scale of Grand Canyon National Park, May 2021</figcaption>
</figure>
<figure>
<img src="images/hikes/Hayduke_hitchike.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Hitchhiking across the Colorado River at the bottom of the Grand Canyon near the confluence with the Little Colorado River, May 2021</figcaption>
</figure>
</section>
<section>
<h2 style="text-align: center;">Wind River High Route</h2>
<figure>
<img src="images/hikes/WRHR_view2.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Looking north across Wyoming's Wind River Range after 8 days traversing high mountain passes, August 2022</figcaption>
</figure>
<figure>
<img src="images/hikes/WRHR_going_up.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Climbing up a typical pass on the Wind River High Route, August 2022</figcaption>
</figure>
<figure>
<img src="images/hikes/WRHR_hugrock.jpg" alt="hike-pix" class="hike-pix">
<figcaption style="text-align: center;">Scrambling up Wind River Peak, August 2022</figcaption>
</figure>
</section>
</main>
<footer>
<p>© 2026 Lewis Kunik</p>
</footer>
</body>
</html>