generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (147 loc) · 6.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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">
<!-- Meta tags for search engines -->
<meta name="description"
content="Love Running. Club for runners in Dublin, Ireland. Urban running, trail running. Dublin docklands and Phoenix Park">
<meta name="keywords" content="love running, run, running club, runners, Ireland, Dublin, sport, exercise">
<!--Title here-->
<title>Love Running</title>
<!-- Favicon here-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header here -->
<header>
<!--header nav link here (for shortcut: use h1# tab to create h1 id and h1. tab for class)-->
<a href="index.html">
<h1 id="logo">Love Running</h1>
</a>
<!--We add Nav toggle here which is mostly done with JS, this is an alternative.-->
<input type="checkbox" id="nav-toggle" name="nav-toggle">
<label for="nav-toggle" class="nav-toggle-label"><i class="fa-solid fa-bars"></i></label>
<!-- Navigation elements here-->
<nav>
<ul id="menu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</header>
<!-- Main Content Here (sections are used to group together content on the same topic inside inside the main element)-->
<main>
<section id="hero">
<div id="cover-text">
<h2>Love Running</h2>
<h3>Dublin Docklands & Phoenix Park</h3>
</div>
</section>
<!-- New section here for Reasons -->
<section id="reasons">
<h2>Why Love Running With Us?</h2>
<!-- Targeted Div childs here -->
<div id="benefits">
<div id="benefits-physical">
<div>
<h3>Feel Healthy <i class="fa-solid fa-heart-pulse"></i></h3>
<hr>
<p>Since it improves aerobic fitness,
running is a great way to help
improve your cardiovascular health. Plus, it burns calories and
can build strength.</p>
</div>
<div>
<h3>Feel Strong <i class="fa-solid fa-dumbbell"></i></h3>
<hr>
<p>Running strengthens your heart by pumping blood more
effectively through your body.</p>
</div>
</div>
<div id="benefits-mental">
<div>
<h3>Feel Free <i class="fa-brands fa-fly"></i></h3>
<hr>
<p>Physical exercise, running included, is known to release endorphins in the brain.
Endorphins make you more energetic,
more awake and, yes, happier.</p>
</div>
<div>
<h3>Get Social <i class="fa-solid fa-globe"></i></h3>
<hr>
<p>When we run with others, we can run farther and faster more easily. Social running can pull you out of a
running funk or low mood, and
inspire you to try new events.</p>
</div>
<div id="benefits-image">
<div id="circle-cover-bg"></div>
</div>
</div>
</div>
</section>
<!-- Meetup times section here with necessary Font awesome icons -->
<section id="meetups">
<h2 class="hidden-heading">Meet -up Times</h2>
<div id="times">
<div>
<h3>Urban <i class="fa-solid fa-city"></i></h3>
<p>Monday</p>
<p>5k</p>
<p>The Marker Hotel</p>
<p>18:30</p>
</div>
<div>
<h3>Trail <i class="fa-solid fa-tree"></i></h3>
<p>Wednesday</p>
<p>10k</p>
<p>The Phoenix Park</p>
<p>18:30</p>
</div>
<div>
<h3>Urban <i class="fa-solid fa-city"></i></h3>
<p>Friday</p>
<p>5k</p>
<p>The Marker Hotel</p>
<p>18:30</p>
</div>
<div>
<h3>Trail <i class="fa-solid fa-tree"></i></h3>
<p>Saturday</p>
<p>10k</p>
<p>The Phoenix Park</p>
<p>09:30</p>
</div>
<div>
<h3>Coffee <i class="fa-solid fa-mug-hot"></i></h3>
<p>Sunday</p>
<p>0k</p>
<p>The Marker Hotel</p>
<p>11:30</p>
</div>
</div>
</section>
</main>
<!-- Footer here -->
<footer>
<ul id="social-networks">
<!-- links with icons, add aria-label for screen reader accessibility -->
<li><a href="https://www.facebook.com/" target="_blank" rel="noopener" aria-label="visit our facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="https://twitter.com/" target="_blank" rel="noopener"
aria-label="visit our Twitter page (opens in a new tab)"><i class="fa-brands fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/" target="_blank" rel="noopener"
aria-label="visit our youtube page (opens in a new tab)"><i class="fa-brands fa-square-youtube"></i></a></li>
<li><a href="https://www.instagram.com/" target="_blank" rel="noopener"
aria-label="visit our instagram page (opens in a new tab)"><i class="fa-brands fa-instagram"></i></a></li>
</ul>
</footer>
<!-- Font awesome here after the footer, for browser focus. -->
<script src="https://kit.fontawesome.com/3d87242e56.js" crossorigin="anonymous"></script>
</body>
</html>