-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhealthandfitness.html
368 lines (323 loc) · 10.9 KB
/
healthandfitness.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- BOOTSTRAP CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- MAIN CSS -->
<link rel="stylesheet" href="./css/main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Newsbite - Homepage</title>
</head>
<body>
<!-- 1ST NAVIGATION -->
<nav class="navbar navbar-expand-lg navbar navbar-dark "
style="background-color: black;">
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarTogglerDemo03"
aria-controls="navbarTogglerDemo03"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse"
id="navbarTogglerDemo03">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link"
href="./index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link active"
href="./healthandfitness.html">Health & Fitness</a>
</li>
<li class="nav-item">
<a class="nav-link disabled"
href="./contact.html">Arts</a>
</li>
<li class="nav-item ">
<a class="nav-link disabled"
href="./contact.html">Education</a>
</li>
<li class="nav-item ">
<a class="nav-link disabled"
href="./contact.html">Music</a>
</li>
<li class="nav-item">
<a class="nav-link disabled"
href="./contact.html">Science</a>
</li>
<li class="nav-item">
<a class="nav-link disabled"
href="./contact.html">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link disabled"
href="./contact.html">True Crime</a>
</li>
<li class="nav-item">
<a class="nav-link disabled"
href="./contact.html">Entertainment</a>
</li>
<li class="nav-item ">
<a class="nav-link disabled"
href="./contact.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="./login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="./register.html">Register</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="./contact.html">Contact</a>
</li>
</ul>
<div class="a-inline my-2 my-lg-0">
<a href="https://www.instagram.com/"><i
class="fa fa-instagram"
aria-hidden="true"></i></a>
<a href="https://www.facebook.com/"><i
class="fa fa-facebook-square"
aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/"><i
class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
</div>
</div>
</nav>
<!-- 1ST NAVIGATION ENG -->
<!-- LOGO -->
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<img
class="logo"
src="./images/LOGO.png" />
</div>
</div>
</div>
<!-- LOGO end -->
<!-- 2ND NAV BAR -->
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<nav class="navbar navbar-expand-lg navbar-light"
style="background-color: white">
<button class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarTogglerDemo03"
aria-controls="navbarTogglerDemo03"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse"
id="navbarTogglerDemo03">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link active"
href="./index.html">Home <span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link"
href="./mental-health.html">Mental Health</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="./innovation-in-health.html">Innovation in Health</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2"
type="search"
placeholder="Search"
aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0"
type="submit">Search</button>
</form>
</div>
</nav>
<!-- 2ND NAV BAR END -->
<header>
</header>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<img
class="homepageHead"
src="./images/corona2.jpg"
alt="Snow"
style="width: 100%; height: 300px"
/>
<div class="text-left carousel-caption">
<h1>Top News</h1>
<h2>
Covid: Remdesivir 'has little or no effect' on survival, says WHO
</h2>
<p class="tagline">
Listen to The Financial Times News Briefing
<a class="linkColor" href="https://open.spotify.com/episode/0EKc2Pc45pOueP1MzLR7Hj"
>here</a
>
</p>
</div>
</div>
</div>
<header class="healthcarePod"> TOP STORIES </header>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6">
<img
class="homepageHead"
src="./images/COVID.jpg"
alt="Snow"
style="width: 100%; height: 357px;"
/>
<div class=" carousel-caption black-background">
<h2>Telling the stories of COVID victims</h2>
<p class="tagline">
Uncovering the personal stories of people who died from COVID-19,
host Dorain Lynskey is joined by Sirin Kale’s Guardian, creator of
the series Lost To The Virus which has become one of the most
moving reporting feats of the year. Click
<a
class="linkColor"
href="https://open.spotify.com/episode/45nTKMzHaRisfOJ4aj8Lga"
>here</a
>
for the full episode
</p>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-6">
<img src="./images/transcription.jpg"
style="width: 100%" />
<div class="text-left carousel-caption black-background">
<h2>Thinking about transcribing your podcast?</h2>
<p class="tagline">
Click
<a
class="linkColor"
href="https://www.podcast.co/create/transcribe-podcasts"
>here</a
>
for more information
</p>
</div>
</div>
</div>
<header class="healthcarePod"> HEALTHCARE PODCASTS </header>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-5">
<div class="card"
style="width: 100%;">
<div class="card-body">
<h5 class="card-title">Men's Health</h5>
<iframe
sandbox="allow-same-origin allow-scripts allow-top-navigation allow-popups allow-forms"
scrolling="no"
width="100%"
height="185"
frameborder="0"
src="https://embed.radiopublic.com/e?if=the-ground-up-show-GEzzLN&ge=s1!71a3602c19577c7c2ffca2aa9a1dc84cb4c6d397"
></iframe>
<h6 class="card-subtitle mb-2 text-muted"></h6>
<p class="card-text"> Today in men's health: Award-winning filmmaker Matt D’Avella, best
known for the Netflix documentary Minimalism discusses mental health
with Daniel Doty. During especially rough times, we all need a
little help. Sometimes, that might mean seeking a psychiatrist to
help our mental health. Other times, it's just watching one on TV.
</div>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-4">
<div class="card"
style="width: 100%;">
<div class="card-body">
<h5 class="card-title">Women's Health</h5>
<iframe
sandbox="allow-same-origin allow-scripts allow-top-navigation allow-popups allow-forms"
scrolling="no"
width="100%"
height="185"
frameborder="0"
src="https://embed.radiopublic.com/e?if=health-forward-podcast-6nojad&ge=s1!a353dddb74f7249b0d0a0d3bdad9069e5f80b7a1"
></iframe>
<h6 class="card-subtitle mb-2 text-muted"></h6>
<p class="card-text"> Today in women's health: Why does it
take so long to get a diagnosis
for endometriosis? Endometriosis
affects roughly 2 million women in
the UK, so why do they have to fight to be heard?
Listen now to the Health Forward Podcast produced
and hosted by Alaina Davis
</div>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-3">
<div class="card"
style="width: 100%;">
<div class="card-body">
<h5 class="card-title">Children's Health</h5>
<iframe
sandbox="allow-same-origin allow-scripts allow-top-navigation allow-popups allow-forms"
scrolling="no"
width="100%"
height="185"
frameborder="0"
src="https://embed.radiopublic.com/e?if=children-and-covid19-WeZ09V&ge=s1!584c7cbf12ae22fe6d899a4424f93a8fda41e0a8"
></iframe>
<h6 class="card-subtitle mb-2 text-muted"></h6>
<p class="card-text"> Today in children's health.
How to stay focus and collect during
current times especially if you weigthed by
online learning and
decision about your future career/university.
Listen now.
</div>
</div>
</div>
</div>
<footer class="primaryBackground">
<div class="footer-item">
<span>
© Copyright Newsbite
</span>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="./js/main.js"></script>
</body>
</html>