Create a table in HTML to display the Score Board of a Cricket match
Answers
Answered by
3
Answer:
html to display the score board of cricket match
Explanation:
<html>
<head>
</head>
<body>
<h1>Cricket Analysis</h1>
<table>
<thead>
<tr>
<th>Country</th>
<th>Played</th>
<th>Won</th>
<th>Lose</th>
</tra>
</thead>
(tbody
<tr>
<tr>
<td>INDIA</td>
<td>30</td>
<td>27</td>
<td>03</td>
</tr>
<tr>
<td>PAKISTAN</td>
<td>30</td>
<td>03</td>
<td>27</td>
<tr>
</tbody>
</table>
</body>
</html>
Attachments:
Similar questions