-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
546 lines (541 loc) · 26 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Players Profile Card</title>
<meta name="viewport" content="width=device-width, intial-scale=1.0"/>
<link rel="stylesheet" href="card1_styles.css">
</head>
<body>
<div class="container">
<div class="card">
<div class="card-image"><img src="assets/MSD.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Wicket Keeper/Batsman</span>
<h2>MS Dhoni</h2>
<p>MS Dhoni is the only international captain to win all three ICC global trophies – the World T20 in 2007, the Cricket World Cup (50-over) in 2011 and the Champions Trophy in 2013. His record as all-time skipper of the Chennai Super Kings in the IPL is equally stunning – three crowns, four runners-up finishes, Playoffs in all nine seasons apart from the Champions League T20 trophies in 2010 and 2014.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">29</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wicktes</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/AMBATI_RAYUDU.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Batsman</span>
<h2>Ambati Rayudu</h2>
<p>Ambati Rayudu is a stylish middle-order batsman who has built a reputation of being a dangerous floater owing to his clean striking of the ball and cool approach. The 33-year-old was a revelation for CSK at the top of the order during the victorious 2018 campaign which led to his One-Day International comeback.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">1</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">71</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/RAINA.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Batsman</span>
<h2>Suresh Raina</h2>
<p>Suresh Raina is popularly referred to as Mr IPL for his consistency with the bat since the inaugural season. The southpaw is the first to achieve the 5,000-run mark in the competition. Not to forget his livewire presence on the field or his contribution as MS Dhoni’s deputy.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/SHANE_WATSON.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Shane Watson</h2>
<p>Shane Watson remains a top performer in the T20 circuit across the globe even after the 37-year-old Australian retired from international cricket post the 2016 World T20. The Queensland-born is a clean striker of the ball and this makes him a serious threat anywhere in the batting order. Add to it his reliable and accurate fast-medium bowling, lending that vital balance to any line-up.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">37</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/FAF.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Batsman</span>
<h2>FAF Duplesis</h2>
<p>Faf du Plessis’ biggest strength as a batsman is his ability to play according to situation. The tall, classy South African can, in fact, bat at any slot, is a fine crafter of an innings and a powerful striker of the ball. Strong on the front foot and possessing a sound defence, he is also a livewire on the field.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">130</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/BRAVO.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Dwayne Bravo</h2>
<p>Dwayne Bravo has won the Purple Cap for most wickets on two occasions (2013 & 2015). However, numbers alone do not give the full picture of the Caribbean all-rounder’s contribution, given the high-impact nature of his play – big blows with the willow when it matters and a death overs specialist. Bravo relishes a challenge and comes out on top more often than not.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/JADEJA.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Ravindra Jadeja</h2>
<p>Ravindra Jadeja is one of India’s best fielders, and Australian great Michael Hussey, now the batting coach of the Chennai Super Kings, has said, “Jadeja is a fantastic all-rounder and is worth 10 runs a game from his fielding alone.” In fact, Australian bowling legend Shane Warne famously described Jadeja as a “Rockstar” because of the left-hander’s confidence in his own abilities.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">11</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">2</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/KEDAR_JADHAV.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Kedhar Jadhav</h2>
<p>An aggressive middle-order batsman blessed with great hand-eye coordination, Kedar Jadhav is widely acknowledged as a natural T20 player. The spunky Maharashtra cricketer has developed into a part-time off-spinner in ODIs, although the 34-year-old is yet to appear in the bowling column in the IPL. His low, slingy action makes him deceptive given the angle of his release but with the bat in hand Jadhav is a commanding presence.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">22</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/MURALI_VIJAY.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Batsman</span>
<h2>Murali Vijay</h2>
<p>Playing for Chennai Super Kings has brought the best out of opening batsman Murali Vijay, who had a big hand in CSK’s twin IPL triumphs in the opening decade. In the 2011 season, Vijay struck a 52-ball 95 in the final against Royal Challengers Bangalore to set up a winning total of 205-5 at Chepauk when the Lions became the first team to retain the title and the first to win it at home.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">22</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/SAM_CURRAN.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Sam Curran</h2>
<p>Sam Curran is an English bowling all-rounder who is a left-handed bat and left arm medium pacer. He had a very good Under 19 World Cup in 2016 going on to score 201 runs with the bat and 7 wickets with the ball. Made his international debut in 2018, Sam is seen as a long-term prospect for English cricket with his all-round ability. He also holds the record for becoming the youngest player to take an IPL hat-trick.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">35</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">4</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/DEEPAK_CHAHAR.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Deepak Chahar</h2>
<p>Medium-pacer Deepak Chahar had a breakthrough 2018 VIVO IPL season taking 10 wickets in 12 matches while bowling largely during Powerplay and was impressive in what was his first year with the Lions. The 26-year-old was subsequently rewarded with an India call-up in limited-overs cricket.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">3</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/RUTURAJ_GAIKWAD.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Batsman</span>
<h2>Ruturaj Gaikiwad</h2>
<p>Ruturaj Gaikwad is a compact top-order batsman from Maharashtra who was picked up at the Player auction ahead of the 2019 season. An uncapped domestic pick, Gaikwad was a part of the Indian Emerging team that competed in the Asian Cricket Council Emerging Teams Cup in Colombo late last year.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">1</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/SHARDUL_THAKUR.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Shardul Thakur</h2>
<p>Aggressive and tireless, Shardul Thakur is a fast-medium bowler who faces a battle head-on, swinging the ball both ways and bending his back on unresponsive pitches. The Palghar-born has been Mumbai’s spearhead across formats and his consistent performances earned him India colours.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/PIYUSH_CHAWLA.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Piyush Chawla</h2>
<p>Piyush Chawla is an exceptional leg spinner very well known in the Indian cricket fraternity started his career at a very early age representing the India U-19 when he was just 15. Chawla has a reputation of being known as a big match player has 2 world cup and IPL trophy under his belt. Having a misleading googly and ability to exploit with the bat, Chawla provides that extra edge to the side.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">2</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/JOSH_HAZLEWOOD.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Josh Hazlewood</h2>
<p>Josh Hazelwood, a dependable seamer from New South Wales became the youngest player to represent Australian One day International side in 2010. Is seen as a treat by every opposition, Hazelwood has very sharp accuracy and extracts steep bounce using his height to good advantage. Getting picked for IPL 2020 without any prior IPL experience shows his potential to impact.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/MONU_KUMAR.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Monu Kumar</h2>
<p>Jharkhand’s Monu Kumar Singh is an accurate medium-pace bowler who swings the ball both ways. An uncapped domestic pick at the Player auction ahead of the 2018 season, Monu Kumar represented India U-19 at the 2014 Junior World Cup, and has bowled some impressive spells for his state in the National limited-overs competitions (50-over & T20). He was retained by the franchise for IPL-12.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/KARN_SHARMA.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Karn Sharma</h2>
<p>Wrist spinners are making a huge impact in the shorter formats of the game and Karn Sharma, who represented India in Test, ODIs and T20I in 2014, is one such bowler. A gutsy spinner and a useful batsman, Karn has not only added more variations to his repertoire but has also worked on imparting more revolutions to his stock delivery.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/MITCHELL_SANTNER.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">All-Rounder</span>
<h2>Mitchell Santner</h2>
<p>Left-arm spinner Mitchell Santner will be seen in his maiden IPL in the 2019 VIVO edition after missing the previous season due to injury. The Hamilton-born all-rounder ascended to the top of the T20I bowling rankings for the first time in early 2018 and also unveiled his version of the carrom ball, dubbed the ‘claw’, a delivery that he flicks out of his fingers.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/LUNGISANI_NGIDI.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Lungi Ngidi</h2>
<p>A tall pacer, Lungi Ngidi made his debut for South Africa in 2017 against Sri Lanka and was adjudged the Man of the Match. Ngidi was identified as a T20 prospect early on when he finished as the joint second-highest wicket-taker in the Africa Cup, a provincial T20 tournament that serves as a curtain raiser to the season, in September 2015.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">2</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">4</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/JAGADEESAN N.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Wicket Keeper/Batsman</span>
<h2>N Jagadeesan</h2>
<p>Narayan Jagadeesan is a promising ’keeper-batsman who came up through the ranks in Tamil Nadu cricket and made a mark in the T20 format when he emerged as the top run-getter in the inaugural Tamil Nadu Premier League in 2016 to be adjudged Player of the tournament. The uncapped domestic pick was blooded into the State side across formats in the 2016-17 season and has been a regular since.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">1</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">1</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/IMRAN_TAHIR.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Imran Tahir</h2>
<p>Subtle variations, accuracy and the ability to spin the ball both ways make South Africa’s Imran Tahir one of the most dangerous leg-spinners in the shorter formats of the game where wrist spinners currently appear to be the go-to men. A wicket-taking bowler, the 40-year-old Pakistan-born with a high-arm action possesses the ability to contain batsmen in the middle overs and has also reached the top of the bowler rankings in both ODI and T20I.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/R_SAI_KISHORE.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Sai Kishore</h2>
<p>R Sai Kishore is a promising young left arm spinner. Known for his consistency and control Sai made his domestic debut in 2017 and has never looked back since. He is currently the lead spinner for Tamil Nadu who was awarded an IPL contract for his stellar performance in the Syed Mushtaq Ali Trophy picking up 20 wickets in 12 matches going on to be the highest wicket taker of the tournament.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/HARBHAJAN_SINGH.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>Harbhajan Singh</h2>
<p>Harbhajan Singh moved to the Den ahead of the 2018 IPL season after turning out for arch rivals Mumbai Indians with considerable success in the opening decade. The wily off-spinner brings with him tremendous experience as a top international performer across formats and is a proven match-winner in the IPL.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">0</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">0</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
<div class="card">
<div class="card-image"><img src="assets/KM_ASIF.png" height="100%" alt=""></div>
<div class="card-text">
<span class="date">Bowler</span>
<h2>KM Asif</h2>
<p>KM Asif impressed with his pace in the 2018 VIVO IPL edition, bowling upwards of 140 kmph in the two games that he played – against Delhi Daredevils (renamed Delhi Capitals) and Kolkata Knight Riders. He also dismissed openers Prithvi Shaw and Colin Munro on IPL debut against Delhi.</p>
</div>
<div class="card-stats">
<div class="stat">
<div class="value">1</div>
<div class="type">Matches</div>
</div>
<div class="stat border">
<div class="value">1</div>
<div class="type">Runs</div>
</div>
<div class="stat">
<div class="value">0</div>
<div class="type">Wickets</div>
</div>
</div>
</div>
</div>
</body>
</html>