-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtables.html
More file actions
72 lines (72 loc) · 1.65 KB
/
tables.html
File metadata and controls
72 lines (72 loc) · 1.65 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
<!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" />
<link rel="stylesheet" href="table.css">
<title>Tables</title>
</head>
<body>
<div>
<table>
<caption>
India Batting 229/4
</caption>
<thead>
<tr>
<th>Player</th>
<th>Runs</th>
<th>Balls</th>
<th>Fours</th>
<th>Sixes</th>
</tr>
</thead>
<tbody>
<tr>
<td>KL Rahul</td>
<td>51</td>
<td>35</td>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>Rohit Sharma</td>
<td>35</td>
<td>15</td>
<td>1</td>
<td>4</td>
</tr>
<tr>
<td>Virat Kohli</td>
<td>64*</td>
<td>40</td>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>Suryakumar Yadav</td>
<td>35</td>
<td>15</td>
<td>1</td>
<td>4</td>
</tr>
<tr>
<td>Shreyes Iyer</td>
<td>9</td>
<td>4</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>Hardik Pandya</td>
<td>35*</td>
<td>11</td>
<td>4</td>
<td>3</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>