-
Notifications
You must be signed in to change notification settings - Fork 0
/
sport.html
2014 lines (2007 loc) · 115 KB
/
sport.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>Sport | 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="green">
<!--========== 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">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">Lifestyle</a></li>
</ul>
</li>
<li><a href="sport.html" class="active">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 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><a href="news.html">News</a> </li>
<li class="active"><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-9 -->
<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-9 -->
<!-- Begin col-sm-3 -->
<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-3 -->
</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="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>
<!-- 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>
<!--========== BEGIN #MAIN-SECTION ==========-->
<section id="main-section">
<!-- ========== BEGIN PARALLAX ========== -->
<div id="parallax-section">
<div class="image6 img-overlay1">
<div class="container">
<div class="caption text-center">
<div class="color-white text-center weight-300 medium-caption">Get the latest breaking news and top sport headlines</div>
<div class="color-white text-center weight-800 large-caption">Latest sports news</div>
<div class="color-white text-center weight-400 medium-caption">Get all of the latest local and international sports news</div>
<h5>Visit 24 News for up-to-the-minute news, breaking news, video, audio and feature stories</h5>
</div>
</div>
</div>
</div>
<!-- ========== END PARALLAX ========== -->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<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 #NEWS-SLIDER- ==========-->
<div id="news-slider" class="owl-carousel">
<div class="news-slide">
<div class="news-slider-layer first"> <a href="americanfootball.html">
<div class="content"> <span class="category-tag bg-1">American Football</span>
<p>24h Sport's American football site - get all the latest news, results and analysis for American football including the NFL and Super Bow.</p>
</div>
<img src="img/slider_574x443.jpg" alt=""> </a> </div>
<div class="news-slider-layer second"> <a href="basketball.html">
<div class="content"> <span class="category-tag bg-4">Basketball</span>
<p>Get Inspired: How to get into Basketball</p>
</div>
<img src="img/slider_274x442.jpg" alt=""> </a> </div>
<div class="news-slider-layer third"> <a href="soccer.html">
<div class="content"> <span class="category-tag bg-1">Soccer</span>
<p>Sam A.: England job is my greatest challenge</p>
</div>
<img src="img/slider_374x215.jpg" alt=""> </a> </div>
<div class="news-slider-layer fourth"> <a href="formula-1.html">
<div class="content"> <span class="category-tag bg-6">Formula 1</span>
<p>Lewis H. still battling back from 'rock bottom'</p>
</div>
<img src="img/slider_374x215.jpg" alt=""> </a> </div>
</div>
<!-- End .news-slide -->
<!-- Begin .news-slide -->
<div class="news-slide">
<div class="news-slider-layer first"> <a href="basketball.html">
<div class="content"> <span class="category-tag bg-1">Baseball</span>
<p>Get the latest Baseball news, scores, stats, standings, and more</p>
</div>
<img src="img/slider_574x443.jpg" alt=""> </a> </div>
<div class="news-slider-layer second"> <a href="americanfootball.html">
<div class="content"> <span class="category-tag bg-4">Softball</span>
<p> Stay up-to-date with the Softball action by viewing Softball News now.</p>
</div>
<img src="img/slider_274x442.jpg" alt=""> </a> </div>
<div class="news-slider-layer third"> <a href="soccer.html">
<div class="content"> <span class="category-tag bg-1">Tennis</span>
<p>Latest tennis news - Top stories, match highlights, and live scores</p>
</div>
<img src="img/slider_374x215.jpg" alt=""> </a> </div>
<div class="news-slider-layer fourth"> <a href="formula-1.html">
<div class="content"> <span class="category-tag bg-6">Motorsport</span>
<p>The home of Motorsport on 24h Sport online. Includes the latest news and statistics</p>
</div>
<img src="img/slider_374x215.jpg" alt=""> </a> </div>
</div>
</div>
<!--========== END .NEWS-SLIDER ==========-->
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<div class="module-title">
<h3 class="title"><span class="bg-12">American Football</span></h3>
<h3 class="subtitle">Standings</h3>
</div>
<!--========== BEGIN .TABLE-STANDING ==========-->
<div class="panel">
<div class="table-responsive">
<table class="table">
<thead>
<tr class="bg-red">
<th>#</th>
<th>Team</th>
<th>Won</th>
<th>Lost</th>
<th>Tied</th>
<th>Pts For</th>
<th>Pts Ag</th>
<th>Win%</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><a href="#">Team 1</a></td>
<td>12</td>
<td>4</td>
<td>0</td>
<td>419</td>
<td>279</td>
<td>75%</td>
</tr>
<tr>
<td>2</td>
<td><a href="#">Team 2</a></td>
<td>10</td>
<td>6</td>
<td>0</td>
<td>423</td>
<td>319</td>
<td>62%</td>
</tr>
<tr>
<td>3</td>
<td><a href="#">Team 3</a></td>
<td>5</td>
<td>11</td>
<td>0</td>
<td>328</td>
<td>401</td>
<td>31.3%</td>
</tr>
<tr>
<td>4</td>
<td><a href="#">Team 4</a></td>
<td>3</td>
<td>13</td>
<td>0</td>
<td>278</td>
<td>432</td>
<td>18.8%</td>
</tr>
</tbody>
</table>
<div class="table-footer"> <span>Last updated: Dec 5, 2016 1:09pm</span> </div>
</div>
</div>
<!--========== END .TABLE-STANDING ==========-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!--========== BEGIN .SPORT-PROMO ==========-->
<!-- Begin .block-title-2 -->
<div class="block-title-2">
<h3><strong>Football</strong> Live on 24h Sport</h3>
</div>
<!-- End .block-title-2 -->
<div class="sport-promo">
<div class="sport-promo-block"> <a href="#">
<h4 class="time">12:30am - MLS</h4>
<h3><img alt="" class="sport-promo-badge" src="img/team2-logo.png"> <span class="sport-promo-teams">Toronto FC <span class=
"sport-promo-break">vs</span> Seattle</span><img alt="" class=
"sport-promo-badge" src="img/team1-logo.png"></h3>
</a> </div>
<div class="sport-promo-block"> <a href="#">
<h4 class="time">5:25pm - MLS</h4>
<h3><img alt="" class="sport-promo-badge" src="img/team4-logo.png"> <span class="sport-promo-teams">New York City <span class=
"sport-promo-break">vs</span> NY Green Bulls</span><img alt=
"NY Red Bulls badge" class="sport-promo-badge" src=
"img/team3-logo.png"></h3>
</a> </div>
<ul class="list list-bar">
<li class="list_item"> <a class="link-action" href="#" target="_blank">Watch live</a> </li>
<li class="list_item"> <a class="link-action" href="#" target="_blank">All Matches</a> </li>
</ul>
<div class="table-footer"> <span>Last updated: Dec 5, 2016 1:09pm</span> </div>
</div>
<!--========== END .SPORT-PROMO ==========-->
</div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<!--========== BEGIN .VIDEO-FULL ==========-->
<div class="video-full">
<div class="video-container">
<iframe src="https://player.vimeo.com/video/129667651?title=0&byline=0&portrait=0" class="video" title="Advertisement"></iframe>
</div>
<h2><a href="#"><strong>Soccer </strong>news, scores, and stats from the world's leading soccer website.</a></h2>
</div>
<!--========== END .VIDEO-FULL ==========-->
<!--========== BEGIN SMALL-GALLERY ==========-->
<div id="big-gallery-slider-1" class="owl-carousel">
<!-- Begin .big-gallery -->
<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 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 ==========-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!-- Begin .title-style02-light -->
<div class="title-style02-light">
<h3><strong>Soccer</strong> Competitions</h3>
</div>
<!-- End .title-style02-light -->
<!--========== BEGIN .CATEGORY-LIST ==========-->
<ul class="category-list">
<li class="category-list_item">
<h3 class="category-list_header">The Calendar</h3>
<ul class="category-list_sub-links">
<li> <a class="category-list_sub-link" href="#">Australia Open</a> </li>
<li> <a class="category-list_sub-link" href="#">France Open</a> </li>
<li> <a class="category-list_sub-link" href="#">England Open</a> </li>
<li> <a class="category-list_sub-link" href="#">US Open</a> </li>
</ul>
</li>
<li class="category-list_item">
<h3 class="category-list_header">Others</h3>
<ul class="category-list_sub-links">
<li> <a class="category-list_sub-link" href="tennis.html">D Cup 2015</a> </li>
<li> <a class="category-list_sub-link" href="tennis.html"> World Tour </a> </li>
</ul>
</li>
</ul>
<!--========== END.CATEGORY-LIST ==========-->
<!--========== BEGIN .TABS ==========-->
<div class="sidebar-tabs">
<div class="panel">
<div class="panel-body">
<div class="tabbable">
<!-- Begin .nav nav-tabs -->
<ul class="nav nav-tabs nav-tabs-solid nav-justified">
<li class="active"><a href="#solid-justified-tab1" data-toggle="tab">Sport News</a></li>
<li><a href="#solid-justified-tab2" data-toggle="tab">Editor's Picks</a></li>
<li><a href="#solid-justified-tab3" data-toggle="tab">Sport Crew</a></li>
</ul>
<!-- End .nav nav-tabs -->
<div class="tab-content">
<!-- Begin #tab1 -->
<div class="tab-pane active" id="solid-justified-tab1">
<ul>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">30 Dec 2016</span>
<p>Adams H In 16th Inning To Lift C Dodgers, 4-3.</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">02 Dec 2016</span>
<p>Cullers Fans 10 To Help A Over A, 2-1</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">10 Dec 2016</span>
<p>Fantasy Football 2016: Top 10 Running Backs</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">14 Dec 2016</span>
<p>Rooney rule in place since 2003, really not working</p>
</a> </li>
</ul>
</div>
<!-- End #tab1 -->
<!-- Begin #tab2 -->
<div class="tab-pane" id="solid-justified-tab2">
<ul>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">30 Dec 2016</span>
<p>Lakers Forward Larry N Jr. Suffers Sprained Hand During Summer League</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">30 Dec 2016</span>
<p>WATCH: D’Angelo R Hits Game-Winner For Lakers As Time Expires</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">30 Dec 2016</span>
<p>WATCH: Brandon I. Shines In Debut; Lakers Win Summer League Opener</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<span class="day">30 Dec 2016</span>
<p>Examining The 7 Most Head-Scratching Moves Of BNA</p>
</a> </li>
</ul>
</div>
<!-- End #tab2 -->
<!-- Begin #tab3 -->
<div class="tab-pane" id="solid-justified-tab3">
<ul>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<p><strong>Jim H - Sports Director/Anchor</strong> - One of the nation’s most respected sports anchors...</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<p><strong>Gary M - Sports Central Anchor</strong> - Veteran sportscaster joined 24h News in January 2006. He anchors...</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<p><strong>Randy K - 24h News Sports Anchor</strong> - Randy K brings you twice an hour sports up, weekday mornings...</p>
</a> </li>
<li> <a title="" href="#">
<div class="img-responsive"><img src='img/tabs-image_56x56.jpg' alt='' /></div>
<p><strong>Steve G - 24h News Sports Anchor</strong> - In addition to sports reporting, Steve has done play-by-play for League Basebal.</p>
</a> </li>
</ul>
</div>
<!-- End #tab3 -->
</div>
</div>
</div>
</div>
</div>
<!--========== END .TABS ==========-->
</div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module dark">
<div class="container">
<div class="show-info">
<h4 class="schedule-logo bg-4"><a href="tv-schedule.html" target="_blank">This Evening at 18:45 p.m.</a></h4>
<div class="show-title">
<h2>Sport Headlines</h2>
<h3>Hosted by Charley Hart</h3>
</div>
<h4><a class="show-info-button bg-4" href="#">All the latest sports news from around the world</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 ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<div class="module-title">
<h3 class="title"><span class="bg-12">Grand Sports</span></h3>
<h3 class="subtitle"> Latest News</h3>
</div>
<!--========== BEGIN .ROW ==========-->
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-6 ==========-->
<div class="col-sm-6 col-md-6">
<!--========== BEGIN .NEWS ==========-->
<div class="news">
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="americanfootball.html">American Football</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="americanfootball.html"><strong>Football</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">A high incidence of brain disease in former American football players...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="soccer.html">Soccer</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="types-of-trip.html"><strong>Soccer</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">From working as a mechanic to writing to clubs across England asking for a trial...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="basketball.html">Basketball</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="national-parks.html"><strong>Basketball</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">The mixture of running, pivoting and twisting helps improve balance...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="formula-1.html">Formula 1</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="national-parks.html"><strong>Formula 1</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">Both H. and R. have been jeered over the past two grand prixs ...</a></p>
</div>
</div>
<!-- End .item -->
</div>
<!--========== END .NEWS ==========-->
</div>
<!--========== END .COL-MD-6 ==========-->
<!--========== BEGIN .COL-MD-6 ==========-->
<div class="col-sm-6 col-md-6">
<!--========== BEGIN .NEWS ==========-->
<div class="news">
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="tennis.html">Tennis</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="hotels.html"><strong>Tennis</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">Roger F has revealed he will miss next month's - and the rest of this season...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="#">Cricket</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="sport.html"><strong>Cricket</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">Indian cricket team hit the nets at Sabina P on the Wed morning, and followed...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="#">Golf</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="food-drinks.html"><strong>Golf</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">One minute they were slugging it out in one of golf's fiercest battles, HS. stood...</a></p>
</div>
</div>
<!-- End .item -->
<!-- Begin .item -->
<div class="item">
<div class="item-image-1"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a><span><a class="label-4" href="#">Athletics</a></span></div>
<div class="item-content">
<div class="title-left title-style04 underline04">
<h3><a href="sport.html"><strong>Athletics</strong> </a></h3>
</div>
<p><a href="#" target="_blank" class="external-link">Is a great fit for sprinters, and for anyone who wants to seriously focus...</a></p>
</div>
</div>
<!-- End .item -->
</div>
<!--========== END .NEWS ==========-->
</div>
<!--========== END . COL-MD-6 ==========-->
</div>
<!--========== END .ROW ==========-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!--========== BEGIN FIXTURE & RESULTS ==========-->
<!-- Begin .block-title-2 -->
<div class="block-title-2">
<h3><strong>Football</strong> Fixtures & Results</h3>
</div>
<!-- End .block-title-1 -->
<!-- Begin .matches -->
<div class="matches">
<h4 class="matches-header">Mon 4th Dec</h4>
<ul class="matches-list">
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1">Sport KC</span> <span class="matches-col status"> <span class="score"> <span class="score-side">3</span> <span class="score-side">2</span></span> </span> <span class="matches-col team side-2">Columbo</span> <span class="matches-col info">FT</span></a> </li>
</ul>
<h4 class="matches-header">Tue 5th Dec</h4>
<ul class="matches-list">
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1">Colorado</span> <span class="matches-col status"> <span class="score"> <span class="score-side">0</span> <span class="score-side">0</span></span> </span> <span class="matches-col team side-2">Portland</span> <span class="matches-col info">FT</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1">FC D</span> <span class="matches-col status"> <span class="score"> <span class="score-side">4</span> <span class="score-side">0</span></span> </span> <span class="matches-col team side-2">Orlando City</span> <span class="matches-col info">FT</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1"> Galaxy</span> <span class="matches-col status"> <span class="score"> <span class="score-side">2</span> <span class="score-side">0</span></span> </span> <span class="matches-col team side-2">Vancouver</span> <span class="matches-col info">FT</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">UCLQ</span> <span class="matches-col team side-1">Torshavn</span> <span class="matches-col status"> <span class="time">18:00</span></span> <span class="matches-col team side-2">Valletta</span> <span class="matches-col info">SS1</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">UCLQ</span> <span class="matches-col team side-1">Tre Penne</span> <span class="matches-col status"> <span class="time">19:30</span></span> <span class="matches-col team side-2">TNS</span> <span class="matches-col info">SS1</span></a> </li>
</ul>
<h4 class="matches-header">Wed 6th Dec</h4>
<ul class="matches-list">
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">ELQ</span> <span class="matches-col team side-1">FC Infonet</span> <span class="matches-col status"><span class="time">16:45</span></span> <span class="matches-col team side-2">Bearts</span> <span class="matches-col info">SS1</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">UCLQ</span> <span class="matches-col team side-1">Lincoln Imps</span> <span class="matches-col status"><span class="time">18:00</span></span> <span class="matches-col team side-2">Flora Tall</span> <span
class="matches-col info">SS1</span> </a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">EC</span> <span class="matches-col team side-1">Portugal</span> <span class="matches-col status"> <span class="time">20:00</span></span> <span class="matches-col team side-2">Wales</span> <span class="matches-col info"></span></a> </li>
</ul>
<h4 class="matches-header">Thu 7th Dec</h4>
<ul class="matches-list">
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1">NE Revolution</span> <span class="matches-col status"> <span class="time">00:30</span></span> <span class="matches-col team side-2">New York City</span> <span
class="matches-col info">SS1</span> </a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">ELQ</span> <span class="matches-col team side-1">CS F Esch</span> <span class="matches-col status"> <span class="time">17:30</span></span> <span class="matches-col team side-2">Aberdeen</span> <span class="matches-col info">SS1</span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">EC</span> <span class="matches-col team side-1">Germany</span> <span class="matches-col status"> <span class="time">20:00</span></span> <span class="matches-col team side-2">France</span> <span class="matches-col info"></span></a> </li>
<li class="match"> <a class="match-item" href="#"> <span class="matches-col match-label">MLS</span> <span class="matches-col team side-1">NE Revolution</span> <span class="matches-col status"> <span class="time">00:30</span></span> <span class="matches-col team side-2">New York City</span> <span
class="matches-col info">SS1</span> </a> </li>
</ul>
<ul class="list list-bar">
<li class="list_item"> <a class="link-action" href="#">All fixtures</a> </li>
<li class="list_item"> <a class="link-action" href="#">All results</a> </li>
</ul>
</div>
<!-- End .matches -->
<!--========== END FIXTURE & RESULTS ==========-->
</div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<div class="row no-gutter">
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!-- Begin .container-full-->
<div class="container-full bottom-text full-photo">
<div class="entry-media">
<div class="image" style="background-image: url(img/image_875x656.jpg);"></div>
</div>
<div class="content">
<h2><a href="basketball.html">American Football</a></h2>
<h4>D Green’s spot with Team USA likely secure after plea deal.</h4>
</div>
</div>
<!-- End .container-full-->
</div>
<!-- End .full-block-three-columns-equal -->
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!-- Begin .container-full -->
<div class="container-full bottom-text big-photo">
<div class="entry-media">
<div class="image" style="background-image: url(img/image_800x600.jpg);"> <span><a class="label-4" href="#">Baskeball</a></span> <a href="video.html"><span class="play-icon"></span></a></div>
</div>
<div class="content">
<h4> <span class="date">23 Dec 2016</span> <a href="#">Adnan J reaches last chance saloon at M United</a></h4>
<h4> <span class="date">22 Dec 2016</span> <a href="#">M United plane gets ‘lost’ in China before farcical press conference</a></h4>
<h4> <span class="date">21 Dec 2016</span> <a href="#">Why not everyone remembers the 1966 World Cup as fondly as England. </a></h4>
<h4> <span class="date">21 Dec 2016</span> <a href="#">L City’s unsettled Riyad M scores stunner against Celtic </a></h4>
</div>
</div>
<!-- End .container-full -->
</div>
<!-- End .full-block-three-columns-equal -->
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!--========== BEGIN .PROMO-MATCHES ==========-->
<!-- Begin .title-style02 -->
<div class="title-style02">
<h3><strong>Live</strong> on 24h Sport</h3>
</div>
<!-- End .title-style02 -->
<div class="sport-promo">
<div class="sport-promo-block">
<h3><a href="#">B Prix Grand</a></h3>
<h4 class="time"><a href="#">08th Jul - 10th Jul</a></h4>
</div>
<ul class="list list-bar">
<li class="list_item"><a class="link-action" href="#">Get 24 News F1</a></li>
<li class="list_item"><a class="link-action" href="#">Get a 24 News Sports Pass</a></li>
</ul>
</div>
<!--========== END .PROMO-MATCHES ==========-->
<!--========== BEGIN .TABLE-STANDING ==========-->
<!-- Begin .title-style01 -->
<div class="title-style01">
<h3><strong>F1</strong> Driver Standings</h3>
</div>
<!-- End .title-style01 -->
<div class="panel">
<div class="table-responsive">
<table class="table">