generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (134 loc) · 4.91 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
<!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 name="description" content="Love Running club for runners in Dublin, Ireland">
<meta name="keywords" content="love running, running club, ireland, dublin">
<link href="assets/css/style.css" rel="stylesheet">
<title>Love Running</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo">Love Running</h1>
</a>
<nav>
<ul id="menu">
<li>
<a href="signup.html">Sign Up</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="index.html" class="active">Home</a>
</li>
</ul>
</nav>
</header>
<section id="hero-outer">
<div id="hero-image"></div>
<div id="cover-text">
<h2>Love Running</h2>
<h3>Dublin Docklands & Phoenix Park</h3>
</div>
</section>
<section id="club-ethos">
<h2 id="welcome">Why Love Running With Us?</h2>
<div id="left-about">
<div class="left-about-heading">
<h2>Feel Healthy <i class="fas fa-heartbeat"></i></h2>
<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 class="left-about-heading">
<h2>Feel Free <i class="fab fa-fly"></i></h2>
<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>
<div id="right-about">
<div class="right-about-heading">
<h2>Get Social <i class="fas fa-globe"></i></h2>
<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, inspire you to try new events
</p>
</div>
<div class="right-about-heading">
<h2>Feel Strong <i class="fas fa-dumbbell"></i></h2>
<hr>
<p>
Running strengthens your heart by pumping blood more effectively through your body.
</p>
</div>
</div>
<div id="center-about">
<div id="circle-container">
<div id="circle-cover-bg"></div>
</div>
</div>
</section>
<section id="times">
<div>
<h2>Urban <i class="fas fa-city"></i></h2>
<h3>Monday</h3>
<h3>5k</h3>
<h3>The Marker Hotel</h3>
<h3>18:30</h3>
</div>
<div>
<h2>Trail <i class="fas fa-tree"></i></h2>
<h3>Wednesday</h3>
<h3>10k</h3>
<h3>The Phoenix Park</h3>
<h3>18:30</h3>
</div>
<div>
<h2>Urban <i class="fas fa-city"></i></h2>
<h3>Friday</h3>
<h3>5k</h3>
<h3>The Marker Hotel</h3>
<h3>18:30</h3>
</div>
<div>
<h2>Trail <i class="fas fa-tree"></i></h2>
<h3>Saturday</h3>
<h3>10k</h3>
<h3>The Phoenix Park</h3>
<h3>9:30</h3>
</div>
<div>
<h2>Coffee <i class="fas fa-mug-hot"></i></h2>
<h3>Sunday</h3>
<h3>0k</h3>
<h3>The Marker Hotel</h3>
<h3>11:30</h3>
</div>
</section>
<footer>
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook-square"></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="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener" aria-label="Visit our Youtube page (opens in a new tab)"><i class="fab fa-youtube-square"></i></a>
</li>
<li>
<a href="https://Instagram.com" target="_blank" rel="noopener" aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram-square"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/a06d7d3a8d.js" crossorigin="anonymous"></script>
</body>
</html>