-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (54 loc) · 3.5 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
<!DOCTYPE html>
<html class="bg">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<title >Run Time</title>
<link rel="stylesheet" type = "text/css" href="runTime.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" type = "text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css">
<script type = "text/javascript" src = "jquery-3.4.1.min.js"></script>
</head>
<body>
<header>
<div class="container d-flex h-100 align-items-center">
<div class="col text-center">
<h1 id="heading" style="font-family: 'sharp_sans_no2_extraboldRg';">Time is running, what about you?</h1>
</div>
</div>
</header>
<nav class="navbar navbar-light fixed-top navbar-expand-lg" style='background-color: floralwhite'>
<a class="navbar-brand" href="#" style="color: royalblue"><i class="fas fa-running"></i> Run Time</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<button class = "home" id = "button">Home</button>
<span></span>
<button class = "plan" id = "button">Plan</button>
<span></span>
<button class = "calendar" id = "button" onclick="calendar()">Calendar</button>
<span></span>
<button class = "social" id = "button" class="theme">Social</button>
<span></span>
<button class = "feelingdown">Feeling Down?</button>
<span></span>
</nav>
<div id = "para_1">
<h4>
Why run?
</h4>
You may be asking yourself, if there are so many ways to stay fit and exercise, why would I ever choose to run? Running is unlike almost any other exercise because you can do it anytime, anywhere, and with any level of experience. There are countless benefits to running; you can meet your fitness goals, improve your mental health, and increase your life expectancy! Another benefit is that you can join a supportive community of runners to overcome challenges and celebrate successes together.
</div>
<div id = "para_2">
<h4>
About Us
</h4>
At Run Time, our main goals are to help you find the structure you need to start running and the motivation to make it a life-long habit. We implemented features that will help you stick to a running schedule and get encouraged to keep going!
</div>
<script type = "text/javascript" src = "runTime.js"></script>
</body>
</html>