forked from prograd-org/lab-cricpro-scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 3.56 KB
/
index.html
File metadata and controls
108 lines (101 loc) · 3.56 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cricket Scoreboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="./assets/Logo.JPG" alt="Logo" id="logo">
<div id="container">
<h1 id="Title">ICC WORLD CUP 2011</h1>
<h4 id="Team">India Vs SriLanka ScoreCard</h4>
<table>
<tr style="background-color: #F05136;">
<td colspan="6" style="color: white;">India Innings</td>
<td style="color: white;">277 - 4 ( 48.2 )</td>
</tr>
<tr>
<td>Batsman</td>
<td></td>
<td>R</td>
<td>B</td>[]
<td>4s</td>
<td>6s</td>
<td>SR</td>
</tr>
<tr>
<td><a href="#Virender Shewag">Virender Sehwag</a></td>
<td class="status">lbw b L Malinga</td>
<td id="run-1">0</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0.00</td>
</tr>
<tr>
<td><a href="#Virender Shewag">Sachin Tendulkar</a></td>
<td class="status">lbw b L Jadeja</td>
<td id="run-2">18</td>
<td>14</td>
<td>2</td>
<td>0</td>
<td>128.57</td>
</tr>
<tr>
<td><a href="#Virender Shewag">Gautam Gambhir</a></td>
<td class="status">lbw b L Bhuvanesh Kumar</td>
<td id="run-3">97</td>
<td>122</td>
<td>9</td>
<td>0</td>
<td>79.51</td>
</tr>
<tr>
<td><a href="#Virender Shewag">Virat Kohli</a></td>
<td class="status">lbw b L Shyam Karan</td>
<td id="run-4">35</td>
<td>49</td>
<td>4</td>
<td>0</td>
<td>71.43</td>
</tr>
<tr>
<td><a href="#Virender Shewag">MS Dhoni (c & wk)</a></td>
<td class="status">lbw b L Malinga</td>
<td id="run-5">91</td>
<td>79</td>
<td>8</td>
<td>2</td>
<td>115.19</td>
</tr>
<tr>
<td><a href="#Virender Shewag">Yuvraj Singh</a></td>
<td class="status">lbw b L Malinga</td>
<td id="run-6">21</td>
<td>24</td>
<td>2</td>
<td>0</td>
<td>87.50</td>
</tr>
<tr>
<td>Extras</td>
<td></td>
<td colspan="5"><span id="extra">15</span> (b 1, lb 6, w 8, nb 0, p 0)</td>
</tr>
<tr>
<td>Total</td>
<td></td>
<td colspan="5"><span id="total"> </span> (4 wkts, 48.2 Ov)</td>
</tr>
<tr>
<td>Did not bat</td>
<td colspan="6" style="color: #1aa3ff;">Suresh Raina, Harbhajan Singh, Zaheer Khan, Munaf Patel, S Sreesanth</td>
</tr>
</table>
</div>
<footer class="footer">Made with <img src="./assets/prograd-heart.svg"> by Bhargob</footer>
<script src="script.js"></script>
</body>
</html>