-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlifestyle.html
1046 lines (1038 loc) · 61.2 KB
/
lifestyle.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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="24h News - Broadcast News TV Channel & News Magazine Template">
<meta name="author" content="Via-Theme">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site Title -->
<title>Lifestyle | 24h News</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed%7CRoboto+Slab:300,400,700%7CRoboto:300,400,500,700" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/colors.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/weather-icons.min.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="pageloader">
<div class="loader-item"> <img src="img/load.gif" alt='loader' /> </div>
</div>
<!--========== BEGIN #WRAPPER ==========-->
<div id="wrapper" data-color="red">
<!--========== BEGIN #HEADER ==========-->
<header id="header">
<!-- Begin .top-menu -->
<div class="top-menu">
<!-- Begin .container -->
<div class="container">
<!-- Begin .left-top-menu -->
<ul class="left-top-menu">
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="youtube"> <i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="instagram"> <i class="fa fa-instagram"></i></a> </li>
<li class="address"><a href="#"><i class="fa fa-phone"></i> +00 (123) 456 7890</a></li>
<li class="address"><a href="#"><i class="fa fa-envelope-o"></i> info@domain.com</a></li>
</ul>
<!-- End .left-top-menu -->
<!-- Begin .right-top-menu -->
<ul class="right-top-menu pull-right">
<li class="contact"><a href="contact.html"><i class="fa fa-map-marker fa-i"></i></a></li>
<li class="about"><a href="about-us.html"><i class="fa fa-user fa-i"></i></a> </li>
<li>
<div class="search-container">
<div class="search-icon-btn"> <span style="cursor:pointer"><i class="fa fa-search"></i></span> </div>
<div class="search-input">
<input type="search" class="search-bar" placeholder="Search..." title="Search"/>
</div>
</div>
</li>
</ul>
<!-- End .right-top-menu -->
</div>
<!-- End .container -->
</div>
<!-- End .top-menu -->
<!-- Begin .container -->
<div class="container">
<!-- Begin .header-logo -->
<div class="header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h1>24h <span>News</span></h1>
<h4>Your 24h News Source</h4>
</a></div>
<!-- End .header-logo -->
<!-- Begin .header-add-place -->
<div class="header-add-place">
<div class="desktop-add"><a href="#" target="_blank"><img src="img/ad_728x90.jpg" alt=""></a></div>
</div>
<!-- End .header-add-place -->
<!--========== BEGIN .NAVBAR #MOBILE-NAV ==========-->
<nav class="navbar navbar-default" id="mobile-nav">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" id="sidenav-toggle"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<div class="sidenav-header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h2>24h <span>News</span></h2>
<h5>Your 24h News Source</h5>
</a></div>
</div>
<div class="sidenav" data-sidenav data-sidenav-toggle="#sidenav-toggle">
<button type="button" class="navbar-toggle active" data-toggle="collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<div class="sidenav-brand">
<div class="sidenav-header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h2>24h <span>News</span></h2>
<h5>Your 24h News Source</h5>
</a></div>
</div>
<ul class="sidenav-menu">
<li><a href="index.html">Home</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="watch-live.html">Watch Live 24/7</a></li>
<li><a href="24-tv-radio.html">24 TV & Radio</a></li>
<li><a href="web-shows.html">Web Shows</a></li>
<li><a href="24-news-store.html">24 News Store</a></li>
</ul>
</li>
<li><a href="world.html">World</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="africa.html">Africa</a></li>
<li><a href="antarctica.html">Antarctica</a></li>
<li><a href="asia.html">Asia</a></li>
<li><a href="australia.html">Australia</a></li>
<li><a href="europe.html">Europe</a></li>
<li><a href="middle-east.html">Middle East</a></li>
<li><a href="north-america.html">North America</a></li>
<li><a href="south-america.html">South America</a></li>
</ul>
</li>
<li><a href="news.html" class="active">News</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="politics.html">Politics</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="tech-science.html">Tech-Science</a></li>
<li><a href="lifestyle.html" class="active">Lifestyle</a></li>
</ul>
</li>
<li><a href="sport.html">Sport</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="americanfootball.html">American Football</a></li>
<li><a href="soccer.html">Soccer</a></li>
<li><a href="basketball.html">Basketball</a></li>
<li><a href="formula-1.html">Formula 1</a></li>
<li><a href="tennis.html">Tennis</a></li>
</ul>
</li>
<li><a href="health.html">Health</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="health-home.html">Health Home</a></li>
<li><a href="men-health.html">Men's Health</a></li>
<li><a href="women-health.html">Women's Health</a></li>
<li><a href="children-health.html">Children's Health</a></li>
<li><a href="alternative-medicine.html">Alternative Medicine</a></li>
<li><a href="nutrition.html">Nutrition & Fitness</a></li>
</ul>
</li>
<li><a href="institucional.html">Travel</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="types-of-trip.html">Types Of Trip</a></li>
<li><a href="national-parks.html">National Parks</a></li>
<li><a href="hotels.html">Hotels</a></li>
<li><a href="food-drinks.html">Food & drinks</a></li>
</ul>
</li>
<li><a href="art-entertainment.html">Art & Entertainment</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="music-opera.html">Music & Opera</a></li>
<li><a href="art-design.html">Art & design</a></li>
<li><a href="theatre-dance.html">Theatre & Dance</a></li>
<li><a href="celebrity-film.html">Celebrity & Film</a></li>
</ul>
</li>
<li><a href="tv-schedule.html">TV Schedule</a></li>
<li><a href="#">More</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="autos.html">Autos</a></li>
<li><a href="deals.html">Deals</a></li>
<li><a href="environment.html">Environment</a></li>
<li><a href="about-us.html">About Us</a></li>
</ul>
</li>
<li><a href="#">Pages</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="single-post.html">Single Post</a></li>
<li><a href="404.html">Error 404</a></li>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="video-full.html">Video Full Width</a></li>
</ul>
</li>
<li><a href="#">Contact</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="contact.html">Contact</a></li>
<li><a href="contact-1.html">Contact 1</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<!--========== END .NAVBAR #MOBILE-NAV ==========-->
</div>
<!-- End .container -->
<!--========== BEGIN .NAVBAR #FIXED-NAVBAR ==========-->
<div class="navbar" id="fixed-navbar">
<!-- Begin .navbar-header -->
<div class="navbar-header">
<!-- Begin .navbar-toggle -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#fixed-navbar-toggle"> <i class="fa fa-bars"></i> </button>
<!-- End .navbar-toggle -->
</div>
<!-- End .navbar-header -->
<!--========== BEGIN MAIN-MENU .NAVBAR-COLLAPSE COLLAPSE #FIXED-NAVBAR-TOOGLE ==========-->
<div class="main-menu nav navbar-collapse collapse" id="fixed-navbar-toggle">
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!-- Begin .nav navbar-nav -->
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="world.html">World</a> </li>
<li class="active"><a href="news.html">News</a> </li>
<li><a href="sport.html">Sport</a></li>
<li><a href="health.html">Health</a></li>
<li><a href="institucional.html">Travel</a></li>
<li><a href="art-entertainment.html">Art & Entertainment</a></li>
<li><a href="tv-schedule.html">TV Schedule</a></li>
<!--========== BEGIN .DROPDOWN ==========-->
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">More</a>
<ul class="dropdown-menu">
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="autos.html">Autos</a></li>
<li><a href="deals.html">Deals</a></li>
<li><a href="environment.html">Environment</a></li>
<li><a href="about-us.html">About-us</a></li>
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Pages</a>
<ul class="dropdown-menu">
<li><a href="single-post.html">Single Post</a></li>
<li><a href="404.html">Error 404 Page</a></li>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="video-full.html">Video Full Width</a></li>
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Contact</a>
<ul class="dropdown-menu">
<li> <a href="contact.html">Contact</a> </li>
<li><a href="contact-1.html">Contact 1</a></li>
</ul>
</li>
<!--========== END .DROPDOWN ==========-->
<!--========== BEGIN DROPDOWN MEGA-DROPDOWN ==========-->
<li class="dropdown mega-dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Mega Menu</a>
<ul class="dropdown-menu mega-dropdown-menu">
<!-- Begin col-sm-4-->
<li class="col-sm-4">
<h3 class="title">24h News In Pictures</h3>
<!-- Begin carousel-1-->
<div id="carousel-1" class="nav-slider carousel slide slide-carousel" data-ride="carousel">
<!-- Begin carousel-indicators-->
<ol class="carousel-indicators">
<li data-target="#carousel-1" data-slide-to="0" class="active"></li>
<li data-target="#carousel-1" data-slide-to="1"></li>
<li data-target="#carousel-1" data-slide-to="2"></li>
</ol>
<!-- End carousel-indicators-->
<!-- Begin carousel-inner-->
<div class="carousel-inner">
<div class="item active"> <a href="#"><img src="img/slider_720x410.jpg" alt=""></a> </div>
<div class="item"> <img src="img/slider_720x410.jpg" alt=""> </div>
<div class="item"> <img src="img/slider_720x410.jpg" alt=""> </div>
</div>
<!-- End carousel-inner-->
<a class="left carousel-control" href="#carousel-1" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#carousel-1" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div>
<!-- End carousel-1-->
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Latest News</h3>
<ul class="media-list">
<li class="media"> <a class="pull-right" href="news.html"><img class="img-responsive" alt="" src="img/image_76x44.jpg"></a>
<div class="media-body">
<p> <a href="news.html" target="_blank"><span class="bg-1">News</span></a><a href="news.html">Thousands of people have demonstrated against...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="sport.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p> <a href="sport.html" target="_blank"><span class="bg-4">Sport</span></a><a href="sport.html">Europe's top four leagues are to be guaranteed four places...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="health.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p><a href="health.html" target="_blank"><span class="bg-2">Health</span></a><a href="health.html">Robot performs surgery on soft tissue better than human...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="lifestyle.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p><a href="lifestyle.html" target="_blank"><span class="bg-9">Lifestyle</span></a><a href="lifestyle.html">A positive lifestyle can bring you happiness...</a></p>
</div>
</li>
</ul>
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Video</h3>
<div class="video-container">
<iframe src="https://player.vimeo.com/video/100192146?title=0&byline=0&portrait=0" class="video" title="Advertisement"></iframe>
</div>
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-8 -->
<li class="col-sm-8">
<h3 class="title">About Us</h3>
<p><a href="about-us.html" target="_blank"><strong>24h News</strong> is among the world's entry-posters in online news and information delivery. Help us make your comments count. Use our viewer comment page to tell us what you think about our shows and our hot topics for the day.</a></p>
</li>
<!-- End col-sm-8 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Follow Us</h3>
<div class="menu-social-icons">
<ul>
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a> </li>
<li> <a href="#" class="youtube"><i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="pinterest"><i class="fa fa-pinterest"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="rss"><i class="fa fa-rss"></i></a> </li>
<li> <a href="#" class="tumblr"><i class="fa fa-tumblr"></i></a> </li>
</ul>
</div>
</li>
<!-- End col-sm-4 -->
</ul>
</li>
<!--========== END DROPDOWN MEGA-DROPDOWN ==========-->
</ul>
<!--========== END .NAV NAVBAR-NAV ==========-->
</div>
<!--========== END .CONTAINER ==========-->
</div>
<!--========== END MAIN-MENU .NAVBAR-COLLAPSE COLLAPSE #FIXED-NAVBAR-TOOGLE ==========-->
<!--========== BEGIN .SECOND-MENU NAVBAR #NAV-BELOW-MAIN ==========-->
<div class="second-menu navbar" id="nav-below-main">
<!-- Begin .container -->
<div class="container">
<!-- Begin .collapse navbar-collapse -->
<div class="collapse navbar-collapse nav-below-main">
<!-- Begin .nav navbar-nav -->
<ul class="nav navbar-nav">
<li><a href="politics.html">Politics</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="tech-science.html">Tech-Science</a></li>
<li class="currentLink"><a href="lifestyle.html">Lifestyle</a></li>
</ul>
<!-- End .nav navbar-nav -->
</div>
<!-- End .collapse navbar-collapse -->
<!-- Begin .clock -->
<div class="clock">
<div id="time"></div>
<div id="date"></div>
</div>
<!-- End .clock -->
</div>
<!-- End .container -->
</div>
<!--========== END .SECOND-MENU NAVBAR #NAV-BELOW-MAIN ==========-->
</div>
<!--========== END .NAVBAR #FIXED-NAVBAR ==========-->
</header>
<!--========== END #HEADER ==========-->
<!--========== BEGIN #MAIN-SECTION ==========-->
<section id="main-section">
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!-- Begin .breadcrumb-line -->
<div class="breadcrumb-line">
<ul class="breadcrumb">
<li>
<h5><a href="news.html">News</a></h5>
</li>
<li class="active">Lifestyle</li>
</ul>
</div>
<!-- End .breadcrumb-line -->
</div>
<!--========== BEGIN .MODULE ==========-->
<section class="module-top">
<div class="container">
<!--========== BEGIN .BREAKING-NEWS ==========-->
<!-- Begin .outer -->
<div class="outer">
<div class="breaking-ribbon">
<h5>Breaking News</h5>
</div>
<!-- Begin .newsticker -->
<div class="newsticker">
<ul>
<li>
<h4><span class="category">News:</span><a href="#"> Extra! Extra! Rethinking the 24 h News Breaking News Experience.</a></h4>
</li>
<li>
<h4><span class="category">Travel:</span><a href="#"> Man seriously hurt after jumping from upper level terminal while fleeing police.</a></h4>
</li>
<li>
<h4><span class="category">Politics:</span><a href="#"> We see momentous or informative events that are relevant to a wide audience.</a></h4>
</li>
<li>
<h4><span class="category">Health:</span><a href="#"> Evanston doctor gives up license after cancer drug probe.</a></h4>
</li>
<li>
<h4><span class="category">World:</span><a href="#"> North Coast fest organizers plan to decrease noise, increase security.</a></h4>
</li>
<li>
<h4><span class="category">Finance:</span><a href="#"> Credit rating hit, another big tax hike possible as clock ticks on pension overhaul.</a></h4>
</li>
</ul>
<div class="navi">
<button class="up"><i class="fa fa-caret-left"></i></button>
<button class="down"><i class="fa fa-caret-right"></i></button>
</div>
</div>
<!-- End .newsticker -->
</div>
<!-- End .outer -->
<!--========== END .BREAKING-NEWS ==========-->
<!--========== BEGIN .ROW ==========-->
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<!-- Begin .entry-block-->
<div class="entry-block-full">
<div class="image-full"> <a href="#"><img src="img/image_980x590.jpg" alt=""></a> </div>
<div class="content">
<h3><a href="#">A positive lifestyle can bring you happiness, but a negative can lead to sadness, illness and depression.</a></h3>
</div>
</div>
<!-- End .entry-block-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!--========== BEGIN .SIDEBAR-NEWSFEED ==========-->
<div class="sidebar-newsfeed">
<!-- Begin .newsfeed -->
<div class="newsfeed-3">
<ul>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">Migrant Crisis</a></h4>
<p class="ellipsis"><a href="#">The proposal involves resettling one refugee for each one...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">Smith's Team</a></h4>
<p class="ellipsis"><a href="#">Presidential candidate Smith speaks with supporters...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">Total Eclipse</a></h4>
<p class="ellipsis"><a href="#">Image caption was the best place to witness the total...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">Global Health</a></h4>
<p class="ellipsis"><a href="#">Global health has been defined as an area of study and research...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">Woman in Mission Hills</a></h4>
<p class="ellipsis"><a href="#">A man and a woman were arrested after he allegedly fired ...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<h4 class="ellipsis"><a href="#">3 Years After Man's Death</a></h4>
<p class="ellipsis"><a href="#">Mother hopes renewed reward will help find her son’s ...</a></p>
</div>
</div>
</li>
</ul>
</div>
<!-- End .newsfeed -->
</div>
<!--========== END .SIDEBAR-NEWSFEED ==========-->
<!--========== BEGIN #SIDEBAR-SOCIAL-BUTTONS ==========-->
<div class="sidebar-social-icons">
<ul>
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a> </li>
<li> <a href="#" class="youtube"><i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="pinterest"><i class="fa fa-pinterest"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="rss"><i class="fa fa-rss"></i></a> </li>
<li> <a href="#" class="tumblr"><i class="fa fa-tumblr"></i></a> </li>
</ul>
</div>
<!--========== END .SIDEBAR-SOCIAL-BUTTONS ==========--></div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="module-title">
<h3 class="title"><span class="bg-1">This Morning Lifestyle</span></h3>
<h3 class="subtitle">Relationships</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Family & Friends</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>How to cope</strong> when your daughter is cooler than you were at the same age</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Watching my seven-year-old daughter</strong> chat over “coffee” (read: babyccino) with her friends recently, I couldn’t help but be struck by the differences between their lives...</a></p>
<div><a href="children-health.html" target="_blank"><span class="read-more">Children's Health</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Marriage</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>Why you’ll</strong> probably choose the wrong person to love....</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>IT’S one thing</strong> to ask why we break up, Have you ever wondered why it is we fall in love?...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Strange,</strong> isn’t it, that we rarely ask that question...</a></p>
<div><a href="women-health.html" target="_blank"><span class="read-more">Women' Health</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Dating</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>In the world of recruitment,</strong> one thing is well known. The job does not necessarily go to the best or brightest candidate...</a>.</p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Online dating</strong> is remarkably similar to applying for a job, in that people express interest in a particular...</a></p>
<div><a href="men-health.html" target="_blank"><span class="read-more">Men's Health</span></a> </div>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module dark">
<div class="container">
<div class="show-info">
<h4 class="schedule-logo bg-1"><a href="tv-schedule.html" target="_blank">TV Schedule</a></h4>
<div class="show-title">
<h2>News Insight</h2>
<h3>Hosted by Neal Bailey</h3>
</div>
<h4><a class="show-info-button bg-13" href="#"> Watch the final presidential debate, moderated by Neal Bailey, Tonight at 10 </a></h4>
<div class="figure"><img src="img/schedule_figure.png" alt=""></div>
</div>
<div class="schedule-squares"><span class="square2"></span><span class="square3"></span><span class="square4"></span> <span class="square5"></span><span class="square6"></span><span class="square7"></span><span class="square8"></span><span class="square9"></span><span class="square10"></span><span class="square11"></span></div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<div class="module-title">
<h3 class="title"><span class="bg-2">This Morning Lifestyle</span></h3>
<h3 class="subtitle">Health</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Health ~ Mind</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">9.35 PM</span></div>
<p><a href="#" target="_blank" class="external-link"><strong>Worrying</strong> doesn’t solve your problems, it is the problem.</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>DO YOU worry too much?</strong> Do you find yourself worrying excessively about your health, your finances...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Worrying excessively</strong> can lead to a host of physical and mental problems...</a></p>
<div><a href="health-home.html" target="_blank"><span class="read-more">Health Home</span></a></div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Health ~ Soul</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">9.35 PM</span></div>
<p><a href="#"><strong>Have</strong> a rock solid why...</a> | <a href="#">Make use of all your resources...</a></p>
<p><a href="#"><strong>Get</strong> into the habit of using..</a> | <a href="#">Link new habits to your...</a></p>
<p><a href="#"><strong>Modify</strong> your environment for succes...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Plan</strong> for relapses...</a></p>
<div><a href="alternative-medicine.html" target="_blank"><span class="read-more">Alternative Medicine</span></a></div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Health ~ Diet</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">9.35 PM</span></div>
<p><a href="#" target="_blank" class="external-link"><strong>Why</strong> the paleo diet isn’t the answer for weight loss.</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>However,</strong> if you’re a part of this food tribe and the scales won’t budge, here are the real reasons why.</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>Don’t be afraid</strong> to have some wholegrain toast with your eggs.</a></p>
<div><a href="nutrition.html" target="_blank"><span class="read-more">Nutrition & Fitness</span></a></div>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!-- Begin.parallax -->
<div id="parallax-section1">
<div class="image2 img-overlay1">
<div class="container">
<div class="caption text-center">
<h2 class="color-white weight-300">We introduce you our <strong>24h News Team!</strong> Get more information about us here!</h2>
<a href="about-us.html" target="_blank" class="btn btn-default">About Us</a> </div>
</div>
</div>
</div>
<!-- End.parallax -->
<!-- Begin .add-place -->
<div class="add-place"> <a href="#" target="_blank"><img src="img/ad_820x100.jpg" alt=""></a> </div>
<!-- End .add-place -->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<h2 class="title-style05 style-02">more headlines in our <span><a href="#">item sections</a></span></h2>
<!-- Begin .title-style05-bg -->
<div class="center-title"> <span class="title-line-left"></span>
<h4 class="title-style05 style-01">latest # news</h4>
<span class="title-line-right"></span> </div>
<!-- End .title-style05-bg -->
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!--========== BEGIN .SMALL-GALLERY ==========-->
<!-- Begin .carousel-title -->
<h3 class="carousel-title-gray">News Carousel</h3>
<!-- End .carousel-title -->
<!-- Begin .gallery-slider owl-carousel -->
<div id="small-gallery-slider" class="owl-carousel">
<!-- Begin .small-gallery -->
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="watch-live.html">Watch Live 24/7</a>
<p><a href="watch-live.html">What this generation's watching.</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="24-tv-radio.html">24 TV & Radio </a>
<p><a href="24-tv-radio.html">Sport station could follow 24h3 in going off air.</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="web-shows.html">Web Shows </a>
<p><a href="web-shows.html">Promoted Links From around the Web.</a></p>
<i class="fa fa-clock-o"></i> <span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="24-news-store.html">News Store </a>
<p><a href="24-news-store.html">Everything | Stories | Interactives | iReport |</a></p>
<i class="fa fa-clock-o"></i> <span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="business.html">Business </a>
<p><a href="business.html">the Co.hired advisers at investment bank </a></p>
<i class="fa fa-clock-o"></i> <span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img class="img-responsive" src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="business.html">Tech-Science </a>
<p><a href="business.html">With SkinTrack, Your Arm is the Touchpad</a></p>
<i class="fa fa-clock-o"></i> <span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
</div>
<!-- End .gallery-slider owl-carousel -->
<!--========== END .SMALL-GALLERY ==========-->
</div>
<!--========== END .CONTAINER ==========-->
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="module-title">
<h3 class="title"><span class="bg-9">This Morning Lifestyle</span></h3>
<h3 class="subtitle">Fashion</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Fashion ~ Shows</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>IF you work</strong> in an office, you probably know who the workplace fashionistas are...</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>They are the women</strong> who always have immaculate make-up, can handle stilettos without looking like a newborn giraffe...</a></p>
<div><a href="art-entertainment.html" target="_blank"><span class="read-more">Art & Entertainment</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Fashion ~ Designers</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>Alex P.</strong> launches range to target the lucrative 16 to 25-year-old fashion retail market...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>The thin teenage models</strong> who skulked down the runway during Fashion Week’s opening show yesterday...</a></p>
<div><a href="celebrity-film.html" target="_blank"><span class="read-more">Celebrity & Film</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Fashion ~ People</strong></a></h3>
<i class="fa fa-clock-o"></i> Dec 08, 2016 <span class="hour">10.45 PM</span></div>
<br>
<div class="post-meta-elements">
<div class="post-meta-author"> <i class="fa fa-user"></i><a href="#">By Mona Cruz, Richard Mclaughlin</a> </div>
</div>
<p><a href="#" target="_blank" class="external-link"><strong>When read</strong> the story about Nicola Thorp being sent home on her first day at P.C., all because she refused to wear high heels for her job as a receptionist...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Anger and annoyance,</strong> but not in the way you might think — I’m a man.</a></p>
<div><a href="theatre-dance.html" target="_blank"><span class="read-more">Theatre & Dance</span></a> </div>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module dark">
<!--========== BEGIN VIDEO ==========-->
<!-- Begin .container-->
<div class="container">
<div class="row no-gutter">
<!-- Begin .col-md-9 -->
<div class="col-sm-9 col-md-9">
<div class="video-full">
<div class="video-container">
<iframe src="https://player.vimeo.com/video/69904142?title=0&byline=0&portrait=0" class="video" title="Advertisement"></iframe>
</div>
</div>
</div>
<!-- End .col-md-9-->
<!-- Begin .col-md-3-->
<div class="col-xs-12 col-sm-3 col-md-3">
<!-- Begin .container-half -->
<div class="title-left title-style03 underline03">
<h4>Related Videos</h4>
</div>
<div class="module-media">
<div class="image"><img class="img-responsive" src="img/image_620x465.jpg" alt=""></div>
<a href="video.html"><span class="play-icon"></span></a> </div>
<div class="module-media">
<div class="image"><img class="img-responsive" src="img/image_620x465.jpg" alt=""></div>
<a href="video.html"><span class="play-icon"></span></a> </div>
</div>
<!-- End .col-md-3-->
</div>
</div>
<!--End .container-->
<!--========== END VIDEO ==========-->
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="module-title">
<h3 class="title"><span class="bg-7">This Morning Lifestyle</span></h3>
<h3 class="subtitle">Food</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Food ~ Eat</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">11.25 PM</span></div>
<p><a href="#" target="_blank" class="external-link"><strong>Despite our favourite fast food</strong> being a complete calorie overload...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Much more concerning</strong> is the emergence of ‘mega meal deals’ from the popular fast food chains, which see us consuming...</a></p>
<div><a href="health.html" target="_blank"><span class="read-more">Health</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Food ~ Drink</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">11.25 PM</span></div>
<p><a href="#" target="_blank" class="external-link"><strong>Many people</strong> think beer and wine are packed full of sugars, but this is not quite true...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Alcohol itself</strong> contains 27kJ per gram (almost seven calories). These calories are metabolised in the liver, well before the nutrients from food we consume is processed.</a></p>
<div><a href="food-drinks.html" target="_blank"><span class="read-more">Food & Drinks</span></a> </div>
</div>
</div>
<div class="entry-block">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h3><a href="#"><strong>Restaurants & Bars</strong></a></h3>
<i class="fa fa-clock-o"></i> 20 Dec 2016 <span class="hour">11.25 PM</span></div>
<p><a href="#" target="_blank" class="external-link"><strong>Is World</strong> losing its appetite for fine dining?</a></p>
<p><a href="#" target="_blank" class="external-link"><strong>We have developed</strong> an appetite for eating more casually both out and at home, with share dishes and plates...</a></p>
<p class="last"><a href="#" target="_blank" class="external-link"><strong>Rather than having</strong> a degustation menu dictated to them...</a></p>
<div><a href="hotels.html" target="_blank"><span class="read-more">Hotels</span></a> </div>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<div class="container">
<!--========== BEGIN BIG-GALLERY ==========-->
<!-- Begin .carousel-title -->
<h3 class="carousel-title">News Gallery</h3>
<!-- End .carousel-title -->
<!-- Begin .gallery-slider owl-carousel -->
<div id="big-gallery-slider-3" class="owl-carousel">
<div class="big-gallery"> <img src="img/image_350x247.jpg" alt=""> <a href="video.html"><span class="play-icon"></span></a> </div>
<div class="big-gallery"><img src="img/image_350x247.jpg" alt=""> <a href="video.html"><span class="play-icon"></span></a> </div>
<div class="big-gallery"> <img src="img/image_350x247.jpg" alt=""><a href="video.html"><span class="play-icon"></span></a> </div>
<div class="big-gallery"><img src="img/image_350x247.jpg" alt=""><a href="video.html"><span class="play-icon"></span></a> </div>
<div class="big-gallery"> <img src="img/image_350x247.jpg" alt=""><a href="video.html"><span class="play-icon"></span></a> </div>
<div class="big-gallery"> <img src="img/image_350x247.jpg" alt=""><a href="video.html"><span class="play-icon"></span></a> </div>
</div>
<!-- End .gallery-slider owl-carousel -->
<!--========== END BIG-GALLERY ==========-->
<!-- Begin .bottom-add-place -->
<div class="bottom-add-place"> <a href="#" target="_blank"><img src="img/ad_1248x100.jpg" alt=""></a> </div>
<!-- End .bottom-add-place -->
</div>
</section>
<!--========== END .MODULE ==========-->
</section>
<!--========== END #MAIN-SECTION ==========-->
<!--========== BEGIN #FOOTER ==========-->
<footer id="footer">
<!-- Begin .parallax -->
<div id="parallax-section2">
<div class="bg parallax2 overlay img-overlay2">
<div class="container">
<div class="row no-gutter">
<div class="col-sm-6 col-md-3">
<h3 class="title-left title-style03 underline03">About Us</h3>
<p class="about-us">When you’re building a website, it’s tempting to get distracted by all the bells and whistles of the design process and forget all about creating compelling content.<br>
But having awesome content on your website is crucial to making inbound marketing
work for your business.<br>
We know ... easier said than done. </p>
<div class="site-logo"><a href="index.html"><img src="img/logo.png" alt="Side Logo" />
<h3>24h <span>News</span></h3>
<p>Your 24h News Source</p>
</a></div>
</div>
<div class="col-sm-6 col-md-3">
<h3 class="title-left title-style03 underline03">News</h3>
<div class="footer-post">
<ul>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Deals do not have a trajectory like most other human interactions.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Harold E.says it proves the value of the kind of investigative journalism.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">The consumer can be influenced by marketing before purchase.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Entertainment can aspire to be art, and can become art, but give pleasure.</a></p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3">
<h3 class="title-left title-style03 underline03">Watch+Listen</h3>
<div class="footer-post">
<ul>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Music may help you think better, analyze matters faster, and work more efficiently.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Video on Demand can be used for entertainment and videoconferencing.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Podcast is a program made available in digital format for download.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="deals.html"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Watch live TV news and your favorite shows on demand. At home or on the go!</a></p>
</div>
</div>
</li>
</ul>
</div>