-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·133 lines (129 loc) · 5.79 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
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
<!doctype html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Kevin Simpson</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-12 col-xs-12 content">
<h1>Hiking Trails Project <br/>
<small>Summer 2020</small>
</h1>
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/V4zO2id_dy4" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<br/>
<p>
I am researching on how people choose an <strong>outdoor activity</strong>. Feedback from volunteers
like you will be incorporated into the design of a hiking trail search
engine.
</p>
<br/>
<p>
Participating in this project will involve 5 steps....
<p>
<ol>
<li>Planning a trip</li>
<li>Navigating to your location</li>
<li>Doing your activity</li>
<li>Post to your social media (optional)</li>
<li>Participating in a retrospective interview.</li>
</ol>
<br/>
<p>Still interested? Want to participate?<br/>Read on....</p><br/>
<h3>
Important Information
</h3>
<ul>
<li>Your participation in this project is voluntary</li>
<li>Project feedback will be incorporated into a research paper.</li>
<li>By participating, you consent to the use of your feedback in this analysis.</li>
<li>You can stop your participation or withdraw consent at any time.</li>
<li>There is no compensation for your participation.</li>
</ul>
<br/>
<p>Here's how you can join this project....</p><br/>
<h3>Step #1 - Planning</h3>
<p>For this step, pick 3 possible places that you want to explore. Later you will pick only one activity to
actually do. Right now, brainstorm some ideas.</p>
<p>Some ideas for your activity</p>
<ol>
<li>Hike a hiking trail</li>
<li>Ride your bike around a lake</li>
<li>See the street art in your city downtown</li>
<li>Visit a local park with your dog</li>
<li>Travel to a rock climbing location</li>
</ol>
<p>You an do <u>anything</u> you find interesting as long as it is a <u>new experience</u>
for you and gets you out of the house.</p>
<p>Use your best judgement and
don't do anything that would put yourself in danger.</p>
<br/>
<p>
Once you have picked your top 3 options, send them in an email to <a href="mailto:[email protected]">[email protected]</a>.
<p><br/>
<p>After that, I will reply with a <u>worksheet</u> to help you record your thoughts while you are
participating in
your activity, and will schedule your <u>retrospective interview.</u></p>
<br/>
<br/>
<p>Thank you, and I look forward to speaking with you!</p>
<p class="footer">
© Kevin Simpson 2020 | Inspired by <a
href="https://www.design-seeds.com/seasons/summer/color-play-2/">DesignSeeds.</a>
</p>
</div>
</div>
</div>
<!-- /container -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function (b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function () {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = '//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-XXXXX-X', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>