-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal.html
More file actions
executable file
·155 lines (146 loc) · 4.34 KB
/
journal.html
File metadata and controls
executable file
·155 lines (146 loc) · 4.34 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Trip Around the USA on a Segway</title>
<link type="text/css" rel="stylesheet" href="journal.css">
</head>
<body>
<h1>Segway'n USA</h1>
<p>
Documenting my trip around the US on my very own Segway!
</p>
<h2>August 20, 2012</h2>
<p><img src="images/segway2.jpg" alt="Me any my Segway in New Mexico"></p>
<p>
Well I made it 1200 miles already, and I passed
through some interesting places on the way:
</p>
<table>
<caption>The cities I visited on my Segway'n USA travels</caption>
<tr>
<th>City</th>
<th>Date</th>
<th class="centerAlign">Temperature</th>
<th class="rightAlign">Altitude</th>
<th>Population</th>
<th class="centerAlign">Diner Rating</th>
</tr>
<tr>
<td>Walla Walla, WA</td>
<td class="centerAlign">June 15th</td>
<td class="centerAlign">75</td>
<td class="rightAlign">1,204 ft</td>
<td class="rightAlign">29,686</td>
<td class="centerAlign">4/5</td>
</tr>
<tr class="cellcolor">
<td>Magic City, ID</td>
<td class="centerAlign">June 25th</td>
<td class="centerAlign">74</td>
<td class="rightAlign">5,312 ft</td>
<td class="rightAlign">50</td>
<td class="centerAlign">3/5</td>
</tr>
<tr>
<td>Bountiful, UT</td>
<td class="centerAlign">July 10th</td>
<td class="centerAlign">91</td>
<td class="rightAlign">4,226 ft</td>
<td class="rightAlign">41,173</td>
<td class="centerAlign">4/5</td>
</tr>
<tr class="cellcolor">
<td>Last Chance, CO</td>
<td class="centerAlign">July 23rd</td>
<td class="centerAlign">102</td>
<td class="rightAlign">4,780 ft</td>
<td class="rightAlign">265</td>
<td class="centerAlign">3/5</td>
</tr>
<tr>
<td rowspan="2">Truth or Consequences, NM</td>
<td class="centerAlign">August 9th</td>
<td class="centerAlign">93</td>
<td class="rightAlign" rowspan="2">4,242 ft</td>
<td class="rightAlign" rowspan="2">7,289</td>
<td class="centerAlign">5/5</td>
</tr>
<tr>
<td class="centerAlign">August 27th</td>
<td class="centerAlign">98</td>
<td class="centerAlign">
<table>
<tr>
<td>Tess</td>
<td>5/5</td>
</tr>
<tr>
<td>Tony</td>
<td>4/5</td>
</tr>
</table>
</td>
</tr>
<tr class="cellcolor">
<td>Why, AZ</td>
<td class="centerAlign">August 18th</td>
<td class="centerAlign">104</td>
<td class="rightAlign">860 ft</td>
<td class="rightAlign">480</td>
<td class="centerAlign">3/5</td>
</tr>
</table>
<h2>July 14, 2012</h2>
<p>
I saw some Burma Shave style signs on the side of the
road today:
</p>
<blockquote>
<p>
Passing cars, <br>
When you can't see, <br>
May get you, <br>
A glimpse, <br>
Of eternity. <br>
</p>
</blockquote>
<p>
I definitely won't be passing any cars.
</p>
<h2>June 2, 2012</h2>
<p><img src="images/segway1.jpg" alt="The first day of the trip"></p>
<p>
My first day of the trip! I can't believe I finally got
everything packed and ready to go. Because I'm on a Segway,
I wasn't able to bring a whole lot with me:
</p>
<ul>
<li>cellphone</li>
<li>iPod</li>
<li>digital camera</li>
<li>and a protein bar</li>
</ul>
<p>
Just the essentials. As
Lao Tzu would have said, <q>A journey of a
thousand miles begins with one Segway.</q>
</p>
<!--
<p>
To do list:
</p>
<ul>
<li>Charge Segway</li>
<li>Pack for trip
<ul>
<li>cellphone</li>
<li>iPod</li>
<li>digital camera</li>
<li>a protein bar</li>
</ul>
</li>
</ul>
-->
</body>
</html>