-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (69 loc) · 3.99 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kev.bike</title>
<link rel="stylesheet" href="../styles.css">
<script src="../scripts.js" defer></script>
</head>
<body>
<nav>
<a href="https://kev.bike" class="site-name">kev.bike</a>
<div class="menu-icon" onclick="toggleMenu()">☰</div>
<ul class="nav-links">
<li><a href="./" class="nav-item active">Home</a></li>
<li><a href="https://www.crazyguyonabike.com/doc/WingingItOnWheels" target="_blank" class="nav-item">Journal (GCOAB) <span class="external-link-icon">↗</span></a></li>
<li><a href="https://photos.app.goo.gl/v2PKPLatbUoDvx2s9" target="_blank" class="nav-item">Photos (Google Photos)<span class="external-link-icon">↗</span></a></li>
<li><a href="https://www.youtube.com/@WingingItOnWheels" class="nav-item">YouTube <span class="external-link-icon">↗</span></a></li>
<li><a href="../blog" class="nav-item">Blog</a></li>
<li><a href="../map" class="nav-item">Map</a></li>
<li><a href="../contact" class="nav-item">Contact</a></li>
</ul>
</nav>
<header>
<h1>Winging it on Wheels</h1>
</header>
<main>
<section>
<p>Doing a bit of a cycle so thought I would throw together a website for anyone interested.</p>
<p>The plan is in September 2024 to leave my job, pack my life into panniers, my bike into a box and begin the cycle of a lifetime.</p>
<p>I start in Seattle, USA and cycle south with the goal to make it to Ushuaia, Argentina. Have I mentioned that I have never bikepacked before? Or wild camped. Don't know Spanish. Am wildly out of shape and have never even changed a tire or fixed a puncture...</p>
<p>Anyway, thanks for visiting. Most info will be in tabs along the top if you are interested.</p>
</section>
<hr>
<section>
<h2><a href="https://www.crazyguyonabike.com/doc/WingingItOnWheels" class="section-header" target="_blank">Journal (CrazyGuyOnABike) <span class="external-link-icon">↗</span></a></h2>
<p>This is the day to day journal that isn't so interesting. The "I cycled here, I saw that thing, then I ate this food, now my feet are sore" type of repetitive day to day stuff. </p>
<p>Keeping this as a CrazyGuyOnABike journal </p>
</section>
<hr>
<section>
<h2><a href="https://photos.app.goo.gl/v2PKPLatbUoDvx2s9" class="section-header" target="_blank">Photos (Google Photos)<span class="external-link-icon">↗</span></a></h2>
<p>Am backing up my photos to a public viewable Google Photos album... Presuming I have internet that is. </p>
</section>
<hr>
<section>
<h2><a href="https://www.youtube.com/@WingingItOnWheels" target="_blank" class="section-header">YouTube<span class="external-link-icon">↗</span></a></h2>
<p>Have never composed a video before but am bringing a GoPro with notions of putting some stuff on YouTube. Tho will only have my phone for "editing" so this may not happen.</p>
</section>
<hr>
<section>
<h2><a href="../blog" class="section-header">Blog</a></h2>
<p>Less frequently updated (if at all) but a place for more structured writing about specific topics, thoughts and ideas, lowlights and highlights, or random interests.</p>
</section>
<hr>
<section>
<h2><a href="../map" class="section-header">Map</a></h2>
<p>Presuming I can get the GPS device, phone, website and map to work together, this should contain the map of my route to date.</p>
</section>
<hr>
<section>
<h2><a href="../contact" class="section-header">Contact + Socials</a></h2>
<p>If you want to follow more closely or reach out to say hello.</p>
<p><a href="https://instagram.com/kev.bike.ride" target="_blank">Instagram</a></p>
<p><a href="https://www.youtube.com/@WingingItOnWheels" target="_blank">YouTube</a></p>
</section>
</main>
</body>
</html>