-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
959 lines (904 loc) · 45.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live-score Navbar</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./footer.css">
<link rel="stylesheet" href="./nav.css">
<link rel="shortcut icon"
href="https://a.espncdn.com/combiner/i?img=/i/icons/cricket/ESPN-icon-cricket2.png&w=288&h=288&transparent=true">
</head>
<body>
<div id="navbar"></div>
<div class="box-2">
<div class="box-2-left">
<div class="left1">
<h6>KEY SERIES</h6>
<hr id="hr">
<div class="series"><a href="#">West Indies v India</a></div>
<div class="series"><a href="#">TNPL 2022</a></div>
<div class="series"><a href="#">England v South Africa</a></div>
<div class="series"><a href="#">Ireland v Newzeland</a></div>
<div class="series"><a href="#">Scotland v New Zeland</a></div>
<div class="series"><a href="#">Zimbabwe vs Bangaladesh</a></div>
<div class="series"><a href="#">Ireland Tri-Naation(W)</a></div>
<div class="series"><a href="#">Country Div1</a></div>
<div class="series"><a href="#">count Div2</a></div>
<div class="series"><a href="#">CWG games (cricket)</a></div>
<div class="series"><a href="#">Womens Championship</a></div>
<div class="series"><a href="#">World Test Championship</a></div>
<div class="series"><a href="#">World Cup Super League</a></div>
<div class="series"><a href="#">Pakistan v Scotland</a></div>
</div>
<div class="left2">
<h6>Quick Links</h6>
<hr id="hr">
<div class="series"><a href="#">T20 Timeout</a></div>
<div class="series"><a href="#">T20 time Out Hindi</a></div>
<div class="series"><a href="#">ICC Rankings</a></div>
<div class="series"><a href="#">Fantascy Pick</a></div>
<div class="series"><a href="#">haan Ya Naa</a></div>
</div>
<!-- <div class="left2-img">
<img src="https://tpc.googlesyndication.com/simgad/1027060387297242896?" alt="">
</div> -->
<div class="left2">
<h6>ESPNcricinfo Apps</h6>
<hr id="hr">
<div class="series"><a href="#">Android App</a></div>
<div class="series"><a href="#">iOS App</a></div>
</div>
<div class="left2">
<h6>FOLLOW ESPNcricinfo</h6>
<hr id="hr">
<div class="series"><a href="#">Instagram</a></div>
<div class="series"><a href="#">Twitter</a></div>
<div class="series"><a href="#">Facebook</a></div>
<div class="series"><a href="#">you Tube</a></div>
</div>
<div class="left2">
<h6>ESPN Sites</h6>
<hr id="hr">
<div class="series"><a href="#">The Cricket Monthly</a></div>
<div class="series"><a href="#">ESPN</a></div>
</div>
</div>
<div class="box-2-mid">
<div class="mid">
<div class="mid1">
<div class="zoom-in">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/343000/343038.6.jpg" alt="">
</div>
<a href="#">Do India batters have an issue left-arm pace?Gill's re-emergence another reminder of india's enviable bench strength</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Amid fierce competition for places in the national side, he has found a way to stand out, writes Deivarayan Muthu</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/340400/340482.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Rahul Tests Positive for Covid-19 likely to miss T20ls against WI</h4>
</a>
<br>
<h5>MeanWhile Kuldeep has received a green Signal from the NCA after recovering from an injury
</h5>
</div>
</div>
<hr>
<div class="mid3">
<!-- <a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:black;;font-weight: bolder;">></span> Stokes,Root opt out of
IPL auction</a></a>
</div>
</a> -->
<div class="f">
<div class="ff">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_480,q_50/lsci/db/PICTURES/CMS/342900/342989.6.jpg"
alt="">
</div>
<div class="fff">
<p>preview:WI look to better form against Dhawan lean-India</p>
</div>
</div>
<div class="g">
<div class="gg">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_480,q_50/esci/media/motion/2022/0721/dm_220721_fantasy_india_branded/dm_220721_fantasy_india_branded.jpg"
alt="">
</div>
<div class="ggg">
<p>Fantascy pick: go with iyer as your Captain</p>
</div>
</div>
<div class="h">
<div class="hh">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_480,q_50/lsci/db/PICTURES/CMS/342800/342858.6.jpg"
alt="">
</div>
<div class="hhh">
<p>Whichteam have had more then six captain in a calendar Year</p>
</div>
</div>
</div>
</div>
<div class="mid">
<h5 style="font-weight:bolder;">THE KOHLI QUESTION</h5><br>
<hr>
<div class="mid1">
<div class="zoom-in">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/334200/334250.6.jpg"
alt="">
</div>
<a href="#">
<h4 style="font-weight:bolder;">Ponting:'If Iwas India, i'd stick with kohli because I know the
upside'</h4>
</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Former Australia captian belives kohli should
be kept NO:3 since "moving him around" could further unsettle him</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/342900/342965.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4 style="font-weight:bolder;">Gavaskar on Kohli:'There is this anxiety to play at every
delivery'</h4>
</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Former india captian says he might be
sble to help kohli "Particularly with regard to that off-stump line</a>
</div>
</div>
<hr>
<div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Rohit bats for Kohli aimd slump
Talk </a></a>
</div>
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Rohit bats for Kohli aimd slump
Talk </a></a>
</div>
</a>
</div>
</div>
<div class="mid">
<h5>Ireland vs Newzeland</h5><br>
<h6>3RD T20,BELFAST</h6>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/342800/342881.6.jpg"
alt=""></a>
</div>
<a href="#">LIVE:Stirling attacks in Quick Start for Ireland</a>
<br>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/334000/334054.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Australia, SA to tour India for final T20 World Cup prep in September-Octomber</h4>
</a>
<br>
<h5>South Africa will stay on for ODIs too.Which might be contested by second-string line-ups
</h5>
</div>
</div>
<hr>
<div class="mid3">
<!-- <a href="#">
<div class="series"><a href="#"><a href="#"><span style="color:red;font-weight: bolder;"></span>
Highest individual scores in
BBl</a></a>
</div>
</a> -->
</div>
</div>
<div class="mid">
<h4>WI vs ENGLAND</h4><br>
<h5>T20 Series</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/342900/342986.6.jpg"
alt=""></a>
</div>
<a href="#">How Hooda turned things around (with a little help from irfan Pathan)</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">A year ago, he didn't have a domestic team
and things were looking grim: then came the upswing.Shashank Kishore tells the story</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/341600/341616.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Duleep Trophy, Irani Cup return in India's 2022-23 Calendar</h4>
</a>
<br>
<h5>Under-16 tourntament for Women<. Last staged in 2006, also brought back</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid">
<h4>SPNCRICINFO AWARDS 2021</h4><br>
<h5>ODI BATTING AND BOWLING NOMINEES</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/326700/326706.6.jpg"
alt=""></a>
</div>
<a href="#">Nurpul hasan replaces Mahmudullah as Bangaledesh's T20l Captian</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Appoinment made only for upcoming three-match
series against Zimbabwe</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_gn_w_272/lsci/db/PICTURES/CMS/318600/318659.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Fakhar sets record in a hase, Mushfiqur stars in series win.</h4>
</a>
<br>
<h5>Big hundreds and rearguard fittiesfeatures in our ODI batting shorlist for 2021</h5>
</div>
</div>
<hr>
<div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Tesrt Bowling
Nominees</a></a>
</div>
</a>
</div>
</div>
<div class="mid">
<h4>ICC RANKINGS</h4><br>
<h5>2022</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/334300/334303.6.jpg"
alt=""></a>
</div>
<a href="#">SC to hear case on tenture of Ganguly-led BCCI administration on july 28</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Three-judge bench, led by the Chief Justice
of India, appoints senior lawyer Maninder singh new amicus curiae</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/331500/331532.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>BCCI introduces A+ category for umpires; four International names part of it</h4>
</a>
<br>
<h5>Umpires in A+ and A category will be paid Rs:40,000 aday for a first-class game
</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Comilla Victorians appoint
Steve Rhodes as technical advisor</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid4">
<h5 style="font-weight:bolder;">QUEENSLAND BOUNDS</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/324100/324153.6.jpg"
alt=""></a>
</div>
<a href="#">Sakariya and choudary signed up by KFC T20 Max clubs</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Thw two will also train at the National
cricket center in Brisbane and be part of Queensland Bulls' pre-season preparations</a>
</div>
<hr>
</div>
<div class="mid">
<h4>LV=INSURANCE CHAMPIONSHIP</h4><br>
<h5>DIVISION ONE</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/343000/343029.6.jpg"
alt=""></a>
</div>
<a href="#">Hoops:Washington guides Lancashire home after Bohannon's ton</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Overseas signing griunds out final-day run
chase to keep new side in title hunt</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/343000/343037.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Edwards:Abbott hat-trick, six for seal Hamshire win in Cheltenham sprint finish</h4>
</a>
<br>
<h5>Hampshire hot on Surrey's tall despite Hammonds's efoort on dramatic final day</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid">
<h4>INTERNATIONAL CRICKET CALENDAR </h4><br>
<h5>ICC FUTURE TOURS PROGRAMME</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/341100/341184.6.jpg"
alt=""></a>
</div>
<a href="#">Bangaledesh land Test and ODI jackpot in 2023=2027 cycle</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">They play 34 tests, 59ODIs and 51 T20s in the
next four Years; only West indies have more games in this period</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_480,q_50/lsci/db/PICTURES/CMS/315400/315474.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>India and Australia to play five test series in next FTP Cycle</h4>
</a>
<br>
<h5>Hampshire hot on Surrey's tall despite Hammonds's efoort on dramatic final day</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<!-- From Here -->
<div class="mid">
<h4>ENGLAND VS SOUTHAFRICA </h4><br>
<h5>1st WOMENS T20 CHELMSFORD</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/343000/343011.6.jpg"
alt=""></a>
</div>
<a href="#">Brunt:'If I break after the Commonwealth Games, so be it'</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Venteran seamer hell-bent on gold medal after
rolling back the years in youthfull t20 side</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/309900/309923.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Glenn back from 'fan-girling' to the thick o fthe action</h4>
</a>
<br>
<h5>Legspinner ready to unleash tweaks made after opting out of ODI World Cup</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<!-- Next Here 1 -->
<div class="mid4">
<h4>LV=INSURANCE CHAMPIONSHIP</h4><br>
<h5>DIVISION TWO</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/338600/338614.6.jpg"
alt=""></a>
</div>
<a href="#">Pujara's third double-century of season etches him into Sussex folklore</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">India international is first Susseex batter
to make 200 against Middlesex at Lord's</a>
</div>
<hr>
<!-- <div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/343000/343037.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Edwards:Abbott hat-trick, six for seal Hamshire win in Cheltenham sprint finish</h4>
</a>
<br>
<h5>Hampshire hot on Surrey's tall despite Hammonds's efoort on dramatic final day</h5>
</div>
</div>
<hr> -->
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<!-- From Here 2 -->
<div class="mid">
<h4>SRI LANKA VS PAKISTAN</h4><br>
<h5>2ND MENS TEST</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/342700/342723.6.jpg"
alt=""></a>
</div>
<a href="#">Knee injury rules Afridi out of second Test </a>
<br>
<a style="font-size: 16px;" class="small-case" href="">He suffered the injury on day four of the
firest Galle Test</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/335400/335402.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Nissanka returns, Manasinghe replaces injured Theekshana</h4>
</a>
<br>
<h5>Manasinghe likely to make his debut in the second test in spin-friendly Galle</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid">
<h4>BBL NEWS</h4><br>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_1200,q_60/lsci/db/PICTURES/CMS/340000/340052.6.jpg"
alt=""></a>
</div>
<a href="#">ponting and Khawaja flag BBL Concerns amid rise 0f new T20 Leagues</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">The pair have said there is already evidence
of overseas players favouring other competitons</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_480,q_50/lsci/db/PICTURES/CMS/333000/333097.6.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Melbourne Renegades get firest pick in BBL Overseas draft</h4>
</a>
<br>
</div>
</div>
<hr>
</div>
<div class="mid4">
<h4>SCOTLAND NEWS</h4><br>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_800,q_50/lsci/db/PICTURES/CMS/330200/330209.6.jpg"
alt=""></a>
</div>
<a href="#">Hoops:Washington guides Lancashire home after Bohannon's tonCoetzer announces t20
retirement after giving up scotland captaincy</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Scotland name squad for New Zealand series as
racism report's Publication looms</a>
</div>
<hr>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid">
<h4>SL LANKA VS PAKISTAN</h4><br>
<h5>1ST MENS TEST, GALLE</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_800,q_50/lsci/db/PICTURES/CMS/342900/342970.6.jpg"
alt=""></a>
</div>
<a href="#">Pinch yourself , Pakistan ; Shafique is a living, breathing opening batter</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">He doesn't just feel like the right answer,
but an entire exa being aced, writes Osman Samiuddin</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_square_w_800,q_50/lsci/db/PICTURES/CMS/342900/342934.10.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>Babar: Shafique can become 'one of the best' in the world</h4>
</a>
<br>
<h5>Pakistan captian prasises his opener for showing "class and temperament" in difficult
conditions</h5>
<hr>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid4">
<h4>NEPAL NEWS</h4><br>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_800,q_50/lsci/db/PICTURES/CMS/342900/342995.6.jpg"
alt=""></a>
</div>
<a href="#">Dassanayake resigns as Nepal head coach, takes up role with Canada</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">He submitted his resignation citing "family
reasons" with almost a year and a half left on his current contract</a>
</div>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
<div class="mid">
<h4>CSA T20 LEAGUE</h4><br>
<h5>FRANCHISE CRICKET</h5>
<hr>
<div class="mid1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_800,q_50/lsci/db/PICTURES/CMS/308900/308980.6.jpg"
alt=""></a>
</div>
<a href="#">CSA Confident of seeing off legal Challenge to new league</a>
<br>
<a style="font-size: 16px;" class="small-case" href="">Owners of a team from the now defunt global
T20 League want in on the new competition</a>
</div>
<hr>
<div class="mid2">
<div class="mid2-1">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_square_w_800,q_50/lsci/db/PICTURES/CMS/306400/306453.10.jpg"
alt=""></a>
</div>
</div>
<div class="mid2-2">
<a href="#">
<h4>CSA T20 league likely to have four overseas players, no transformation targets</h4>
</a>
<br>
<h5>The league commissioner graeme smith said a number of international players were already on
board</h5>
</div>
</div>
<hr>
<!-- <div class="mid3">
<a href="#">
<div class="series"><a href="#"><a href="#"><span
style="color:red;font-weight: bolder;">></span> Stokes,Root opt out of IPL
auction</a></a>
</div>
</a>
</div> -->
</div>
</div>
<div class="box-2-right">
<div class="right1">
<a href="#"><img style="width:100%; height :100%;"
src="https://wassets.hscicdn.com/static/images/nlp-logo.svg" alt=""></a>
</div>
<div class="right1">
<h6>News Headline </h6>
<hr id="hr">
<div class="series">
<a href="#" style="color: black;">
<span style="color:blueviolet;font-weight: bolder;">>
</span>
KL Rahul tests
positive for Covid-19
</a>
</div>
<div class="series"><a href="#" style="color: black;"><span
style="color:blueviolet;font-weight: bolder;">></span>Injured Shaheen out
of second SL Test</a>
</div>
<div class="series"><a href="#" style="color: black;"><span
style="color:blueviolet;font-weight: bolder;">></span>Dassanayake Leaves Nepal For
Canada</a>
</div>
<div class="series">
<a href="#" style="color: black;">
<span style="color:blueviolet;font-weight: bolder;">>
</span>Simmons
wants Better Pitches For WI
</a>
</div>
<div class="series"><a href="#" style="color: black;"><span
style="color:blueviolet;font-weight: bolder;">></span>Pujara
hits third Double-ton of Season </a>
</div>
<div class="series"><a href="#" style="color: black;"><span
style="color:blueviolet;font-weight: bolder;">></span>Buzz:Team India Says'Hey'</a>
</div>
</div>
<div class="right2">
<div class="zoom-in">
<a href="#"> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/266100/266179.3.jpg"
alt=""></a>
</div>
<a href="#">On This Day:England win the 2017 world cup</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/342900/342964.png"
alt=""></a>
</div>
<a href="#">Quote Unquote:who's saying what?</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href="#"> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/296900/296943.3.jpg"
alt=""></a>
</div>
<a href="#">Simon Tauffel;'The way to solve the odd grey area cricket is not to replace it with
techonology'</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href="#"><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/342500/342563.6.jpg"
alt=""></a>
</div>
<a href="#">The latest cricket photos</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""><img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/338800/338807.6.jpg"
alt=""></a>
</div>
<a href="#">Photo Feature:training for cricket</a>
</div>
<div class="right2">
<div class="zoom-in">
<img src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/335700/335706.6.jpg"
alt="">
</div>
<a href="#">Who does it best in womens cricket?</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/337000/337009.6.jpg"
alt=""></a>
</div>
<a href="#">The art of the finisher</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/342400/342447.6.jpg"
alt=""></a>
</div>
<a href="#">Records index:most runs, most wickets, and a lot more</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/337400/337475.6.jpg"
alt=""></a>
</div>
<a href="#">'Photo feature: how cricket and poltics mix'</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/341900/341960.6.jpg"
alt=""></a>
</div>
<a href="#">Rankings: Who's leading in every format</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_ds_wide_w_640,q_50/lsci/db/PICTURES/CMS/336400/336479.6.jpg"
alt=""></a>
</div>
<a href="#">T Natrajan, the miracle man of Chinnappamaptti</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_gn_w_656/lsci/db/PICTURES/CMS/328500/328507.5.jpg"
alt=""></a>
</div>
<a href="#">Rankings: Who's leading in every format</a>
</div>
<div class="right2">
<div class="zoom-in">
<a href=""> <img
src="https://img1.hscicdn.com/image/upload/f_auto,t_gn_w_656/lsci/db/PICTURES/CMS/329400/329437.5.jpg"
alt=""></a>
</div>
<a href="#">Photo feature: travel and cricket</a>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
import navbar from "./navexport.js";
document.getElementById("navbar").innerHTML=navbar();
</script>
<script type="module">
import footer from "./footer.js"
document.getElementById("footer").innerHTML=footer();
</script>