-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
110 lines (76 loc) · 3.36 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-control" content="public">
<title>Help Guide</title>
<meta name = "description" content = "Help guide for the simple running pace calculator">
<link rel='stylesheet' href='assets/css/style.css'>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href='assets/css/bootstrap.min.css'>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script async src="assets/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12018723-17', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class = 'wrap'>
<!-- Bootstrap fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://simplepacecalc.com">Simple Pace Calculator</a>
</div> <!-- end navbar-header div -->
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="https://simplepacecalc.com">Home</a></li>
<li class="active"><a href="help.html">Help</a></li>
</ul>
</div><!-- .nav-collapse -->
</div> <!-- .container -->
</nav>
<div class="container">
<div class="page-header">
<h3>Help Guide</h3>
</div><!-- end page-header div -->
<h4>Time</h4>
<p>If no colons are used, the time defaults to minutes. For example, entering <code>23</code> is the same as entering <code>00:23:00</code></p>
<p>If only one colon is used, the time is assumed to be <code>minutes:seconds</code>. For example, entering <code>23:30</code> is the same as entering <code>00:23:30</code></p>
<p>If the time includes hours, two colons should be used and the total time should be entered like this:</p>
<p><code>hours:minutes:seconds</code></p>
<p>For example, for fifteen hours enter:</p>
<p><code>15:00:00</code></p>
<h4>Distances</h4>
<p>Distance will default to miles, but can be entered in the following formats and they will be converted to miles:</p>
<ul>
<li>Kilometers</li>
<li>k</li>
<li>meters</li>
</ul>
</div> <!-- .container -->
</div> <!-- .wrap -->
<!-- Bootstrap fixed footer -->
<footer class="footer">
<div class="container">
<p class="text-muted">Created by <a href='https://kmarsden.com'>Kevin Marsden</a></p>
</div>
</footer>
</body>
</html>