-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQs.htm
113 lines (103 loc) · 4.57 KB
/
FAQs.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQs</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
</head>
<body>
<script>
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<div class="dropdown">
<button class="dropbtn">About
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="About.htm">About</a>
<a href="FAQs.htm">FAQs</a>
<a href="Contact.htm">Contact</a>
</div>
</div>
<a href="thebike.htm">the Bike</a>
<a href="AcrossCanada.htm">Across Canada</a>
<a href="Route.htm">Route</a>
<div class="dropdown">
<button class="dropbtn">Network
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="ApprovedAccommodations.htm">Approved Accommodations</a>
<a href="ApprovedBikeShops.htm">Approved Bike Shops</a>
<a href="ApprovedEateries.htm">Approved Eateries</a>
</div>
</div>
<a href="Community.htm">Community</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<br>
<H1>
FAQs (Frequently Asked Questions)
</H1>
<h3>
<br>
Q: West to East or East to West?
<br>
A: West to East as the mountains will train you.
<br>
<br>
Q: How long does it take to travel across Canada? (How many days would the average trip be?)
<br>
A: The Average duration of trip is about 90 days (including rest days). It's best to check in the <a href="https://www.facebook.com/groups/bikeacrosscanada/posts/8434274966641715">Facebook group</a> as others can answer with their own experiences. You can see on the <a href="https://docs.google.com/spreadsheets/d/1cTomBXfvQ2kc0OhaNZtP8EmSswP4F_OqlPUb5KOP984/edit?usp=drivesdk&fbclid=IwY2xjawFZTatleHRuA2FlbQIxMAABHVpgGbjc8rKuC6FnnPylFOLJQDDD8m0Yl5lmJyecYWIPKgwrbwhhZAU0Zw_aem_PvLmUjSbdJkvQgE9ZYmPXA">spreadsheet</a> tab for Trip Journals as it includes a column for number of days.
<br><br>
Q: What is the average daily distance?
<br>
A: Approximatly 125km/day, but best to ask in the facebook group for varied experiences.
<br>
<br>
Q: What is the weight of all the gear?
<br>
A: It depends on personal preference of how much you can handle. Some prefer light touring, others don't mind the extra weight. Asking the <a href="https://www.facebook.com/groups/bikeacrosscanada/posts/8434274966641715">Facebook group</a> you'll get different answers.
<br>
<br>
Q: Why not just take the Trans Canada Trail?
<br>
A: Because the Trans Canada Trail is not a national cycling route network. Please see the <a href="https://docs.google.com/document/d/1SULCgDEQrQa5h3s0-96QHHXooY5Ar2gltczQzF5WyWs/edit?usp=drivesdk"> Google Document</a> for further explanation.
<br>
<br>
Q: Why not include the north? Yukon/NWT/NorthernBC/Alberta?
<br>
A: Because it's not paved, a great distance between services and you really need to be self-reliant. You can find a great answer from the facebook group <a href="https://www.facebook.com/groups/bikeacrosscanada/posts/7662739063795313/?comment_id=7665583576844195">here.</a>
<br>
<br>
Q: Why isn't the network that's uploaded to Ridewithgps updated?
<br>
A: The project is open-source, you are welcome to volunteer to upload it. The network is rather large and very detailed. Every change that's made to the master GPX file, and then Google Maps map for the KMZ file needs to be updated on every track sharing website that the network is on. This takes a long time to do, and there are no paid staff to-do this.
</h3>
<!copy paste this on every page>
<br>
<hr>
<br>
<center>
<p style="font-family:verdana">
<img src="BottomBanner.png" alt="BottomBanner.png" width="320" height="auto">
<br><br>
<a href="index.html">Home</a> | <a href="About.htm">About</a> |
<a href="Copyright.htm">Copyright</a> | <a href="Route.htm">Route</a> | <a href="Downloads.htm">Downloads</a> | <a href="Campgrounds.htm">Campgrounds</a> |
<a href="IndoorAccommodations.htm"</a>Indoor Accommodations</a> | <a href="FAQs.htm">FAQs</a> | <a href="Contact.htm">Contact</a>
</p></center>
</body>
</html>