-
Notifications
You must be signed in to change notification settings - Fork 3
/
matches.html
907 lines (787 loc) · 44.7 KB
/
matches.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
<!DOCTYPE html>
<html>
<head>
<title>IPL2020</title>
<link rel="stylesheet" type="text/css" href="./match.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,600;1,900&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
</head>
<body>
<!-- navbar starts -->
<nav class="navbar navbar-expand-lg navbar-dark black">
<a class="navbar-brand" href="#">
<img src="./assets/images/ipllogo.jpg" width="30" height="40" alt="" loading="lazy">
</a>
<a class="navbar-brand board font-weight-bolder big" href="#">IPL</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">HOME<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">VIDEOS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">MATCHES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#points-table">POINTS TABLE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#stats">STATS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">FANTASY</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">NEWS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">MORE</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
TEAMS
</a>
<div class="dropdown-menu " aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">CSK</a>
<a class="dropdown-item" href="#">RCB</a>
<a class="dropdown-item" href="#">SRH</a>
<a class="dropdown-item" href="#">KKR</a>
<a class="dropdown-item" href="#">RR</a>
<a class="dropdown-item" href="#">DC</a>
<a class="dropdown-item" href="#">K XI P</a>
<a class="dropdown-item" href="#">MI</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">your team</a>
</div>
</li>
</ul>
<!-- <form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-primary my-2 my-sm-0" type="submit">Search</button>
</form> -->
</div>
</nav>
<!-- navbar ends -->
<!--banner-->
<header class="container-fluid">
<div class="banner-center text-center">
<h1>
<p style="padding-left:10px;">Schedule</p>
</h1>
</header>
<!--banner end-->
<div class="class1" style="padding-top: 10px;">
<div class="class2" style="color: rgba(0, 0, 0, 0.329);">
<p style="font-size: 20px;padding-left: 40px;padding-top: 20px;"> IPL </p></div>
<div class="class2" style="color: rgba(0, 0, 0, 0.329);">
<p style="font-size: 20px;padding-top: 20px;padding-left: 10px;padding-right: 10px;"> Broadcasters</p></div>
<div class="class2" style="padding-left: 5px;">
<img src="./assets/images/starlogo.jpg" height="65px" width="60px">
</div>
<div class="class2" style="padding-right: 95%;padding-top: -10px;" >
<img src="./assets/images/disneylogo.jpg" height="85px " >
</div>
</div>
<hr>
<!--cards-->
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;">Thursday, 1st October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid brown;">
<img src="./assets/team-logo/kp.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/mi.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 13</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(128,0,128);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Friday, 2nd October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(255, 174, 0);">
<img src="./assets/team-logo/csk.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/srh.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid rgb(255, 145, 0);">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
</div>
<div class="item1" style="border-bottom: 3px solid rgb(165, 108, 42)">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 14</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(165, 81, 42);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid brown;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Saturday, 3rd October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid black;">
<img src="./assets/team-logo/rcb.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid rgba(0, 0, 0, 0.877);">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 15</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(98, 0, 128);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(2, 100, 550);">
<img src="./assets/team-logo/dc.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/kkr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid blue;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid blueviolet">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 16</h4>
</div>
<div class="item2" style="border-bottom: 3px solid purple;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Sunday, 4th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(30, 128, 0);">
<img src="./assets/team-logo/mi.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/srh.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid darkgreen;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 17</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 153, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid rgb(255, 136, 0);">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(165, 81, 42);">
<img src="./assets/team-logo/kp.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/csk.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid rgb(165, 108, 42);">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 18</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 115, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid rgb(255, 123, 0);">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Monday, 5th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid black;">
<img src="./assets/team-logo/rcb.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/dc.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid darkgreen;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid royalblue;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 19</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid darkblue;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Tuesday, 6th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid darkblue;">
<img src="./assets/team-logo/mi.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid navy;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid darkgreen;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 20</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Wednesday, 7th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid purple;">
<img src="./assets/team-logo/kkr.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/csk.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid black;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 21</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 123, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid orangered;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Thursday, 8th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(255, 60, 0);">
<img src="./assets/team-logo/srh.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/kp.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 22</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(165, 42, 42);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Friday, 9th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid darkblue;">
<img src="./assets/team-logo/rr.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/dc.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid navy;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid black;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 23</h4>
</div>
<div class="item2" style="border-bottom: 3px solid darkgreen;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid rgb(70, 43, 226);">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Saturday, 10th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(165, 71, 42);">
<img src="./assets/team-logo/kp.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/kkr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 24</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid orange;">
<img src="./assets/team-logo/csk.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rcb.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid orangered;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 25</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Sunday, 11th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid orangered;">
<img src="./assets/team-logo/srh.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRIDERS HYDERABAD</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 26</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid blue;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid blue;">
<img src="./assets/team-logo/mi.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/dc.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid navy;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid black;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 27</h4>
</div>
<div class="item2" style="border-bottom: 3px solid NAVY;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid blue;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Monday, 12th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid black;">
<img src="./assets/team-logo/rcb.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/kkr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid darkgreen;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid navy">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 28</h4>
</div>
<div class="item2" style="border-bottom: 3px solid purple">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Wednesday, 13th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(255, 174, 0);">
<img src="./assets/team-logo/csk.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/srh.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid rgb(255, 145, 0);">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
</div>
<div class="item1" style="border-bottom: 3px solid rgb(165, 108, 42)">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 29</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(165, 81, 42);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid brown;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Thursday, 14th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid brown;">
<img src="./assets/team-logo/kp.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/mi.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 30</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(128,0,128);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Friday, 15th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(255, 174, 0);">
<img src="./assets/team-logo/csk.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/srh.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid rgb(255, 145, 0);">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
</div>
<div class="item1" style="border-bottom: 3px solid rgb(165, 108, 42)">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 31</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(165, 81, 42);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid brown;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Saturday, 16th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid black;">
<img src="./assets/team-logo/rcb.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid rgba(0, 0, 0, 0.877);">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid purple;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 32</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(98, 0, 128);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(2, 100, 550);">
<img src="./assets/team-logo/dc.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/kkr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid blue;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid blueviolet">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 33</h4>
</div>
<div class="item2" style="border-bottom: 3px solid purple;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Sunday, 17th October 2020</h4>
<div class="wrapper">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(30, 128, 0);">
<img src="./assets/team-logo/mi.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/srh.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid darkgreen;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">SUNRISERS HYDERABAD</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">15:30 IST (10:00 GMT), 14:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 34</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 153, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid rgb(255, 136, 0);">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<div class="wrapper" style="padding-top: 20px;">
<div class="item" style="margin-left: 3%;border-bottom: 3px solid rgb(165, 81, 42);">
<img src="./assets/team-logo/kp.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/csk.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid brown;">
<h4 style="padding-top: 40px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KINGS XI PUNJAB</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid rgb(165, 108, 42);">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 35</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 115, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid rgb(255, 123, 0);">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Monday, 18th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid black;">
<img src="./assets/team-logo/rcb.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/dc.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid darkgreen;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">ROYAL CHALLENGERS BANGALORE</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">DELHI CAPITALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid royalblue;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 36</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid darkblue;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Tuesday, 19th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid darkblue;">
<img src="./assets/team-logo/mi.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/rr.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid navy;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">MUMBAI INDIANS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">RAJASTHAN ROYALS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid darkgreen;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 37</h4>
</div>
<div class="item2" style="border-bottom: 3px solid navy;">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid black;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<h4 style="padding-left: 40px;font-weight: 1000;font-family: sans-serif;padding-top: 40px;">Wednesday, 20th October 2020</h4>
<div class="wrapper" >
<div class="item" style="margin-left: 3%;border-bottom: 3px solid purple;">
<img src="./assets/team-logo/kkr.png" height="70px">
<a>v</a>
<img src="./assets/team-logo/csk.png" height="80px">
</div>
<div class="item" style="border-bottom: 3px solid black;">
<h4 style="padding-top: 30px;padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">KOLKATA KNIGHT RIDERS</h4>
<h4 style="padding-left: 0px;font-weight: 700;font-family: sans-serif;font-size: 13px;">CHENNAI SUPER KINGS</h4>
</div>
<div class="item1" style="border-bottom: 3px solid brown;">
<h4 style="font-weight: 700;font-family: sans-serif;padding-top: 35px;font-size: 18px;">19:30 IST (14:00 GMT), 18:00 LOCAL</h4>
<h4 style="font-weight: 700;font-family: sans-serif;color: rgb(255, 72, 0);font-size: 15px;">Match 38</h4>
</div>
<div class="item2" style="border-bottom: 3px solid rgb(255, 123, 0);">
<button type="button" class="btn btn-danger">LIVE</button>
</div>
<div class="item3" style="border-bottom: 3px solid orangered;">
<button type="button" class="btn btn-primary">Book Tickets</button>
</div>
</div>
<!--card end-->
<div style="padding-top: 30px;">
<a style="font-size: 14px;font-weight: 700;font-family: sans-serif;padding-left: 40px;">Note:</a>
<a style="font-size: 14px;font-family: sans-serif;"> The Dream 11 IPL Schedule is subject to change</a>
</div>
<div>
<a style="font-size: 14px;font-weight: 700;font-family: sans-serif;padding-left: 40px;">IST:</a>
<a style="font-size: 14px;font-family: sans-serif;"> Indian Standard Time , </a>
<a style="font-size: 14px;font-weight: 700;font-family: sans-serif;">GMT:</a>
<a style="font-size: 14px;font-family: sans-serif;"> GreenWich Mean Time </a>
</div>
<!-- footer -->
<br><br>
<!-- new footer -->
<!-- Footer -->
<footer class="page-footer font-small bg-dark" style="height: 400px;">
<!-- Footer Links -->
<div class="container">
<!-- Grid row-->
<div class="row text-center d-flex justify-content-center pt-5 mb-3">
<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">About us</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Matches</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Points Table</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Help</a>
</h6>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 mb-3">
<h6 class="text-uppercase font-weight-bold">
<a href="#!">Contact</a>
</h6>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
<hr class="rgba-white-light" style="margin: 0 15%;">
<!-- Grid row-->
<div class="row d-flex text-center justify-content-center mb-md-0 mb-4">
<!-- Grid column -->
<div class="col-md-8 col-12 mt-5 ">
<h3 style="color:white">Know your Cricket</h3>
<p style="line-height: 1.7rem; color:White">
This website is dedicated to the cricket lovers and Lorem ipsum dolor sit amet consectetur
adipisicing elit.
Totam odit sit accusamus deserunt enim. Magni quas facilis maiores voluptatibus nesciunt.
</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
<hr class="clearfix d-md-none rgba-white-light" style="margin: 10% 15% 5%;">
<!-- Grid row-->
<div class="row pb-3">
<!-- Grid column -->
<div class="col-md-12">
<div class="mb-5 flex-center text-center">
<!-- Facebook -->
<a class="fb-ic" href="https://www.facebook.com/" target="_blank">
<i class="fab fa-facebook-f fa-lg white-text mr-4"> </i>
</a>
<!-- Twitter -->
<a class="tw-ic" href="https://twitter.com/" target="_blank">
<i class="fab fa-twitter fa-lg white-text mr-4"> </i>
</a>
<!--Linkedin -->
<a class="li-ic" href="https://www.linkedin.com/in/" target="_blank">
<i class="fab fa-linkedin-in fa-lg white-text mr-4"> </i>
</a>
<!--Instagram-->
<a class="ins-ic" href="https://www.instagram.com/sarvesh_2001/" target="_blank">
<i class="fab fa-instagram fa-lg white-text mr-4"> </i>
</a>
<!--Pinterest-->
<a class="pin-ic" href="https://in.pinterest.com/" target="_blank">
<i class="fab fa-pinterest fa-lg white-text"> </i>
</a>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</div>
<!-- Footer Links -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3" style="color:white;background-color: darkgrey;font-size: 13px;">© Copyright-2020 by Copy-Writer
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- footer -->
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV"
crossorigin="anonymous"></script>
</body>
</html>