Advertisements
Advertisements
प्रश्न
Write HTML code for the following output :
Cricket Analysis
| Country | Played | Won | Lose |
| INDIA | 30 | 27 | 03 |
| PAKISTAN | 30 | 03 | 27 |
थोडक्यात उत्तर
Advertisements
उत्तर
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Cricket Analysis</h1>
<table>
<thead>
<tr>
<th>Country</th>
<th>Played</th>
<th>Won</th>
<th>Lose</th>
</tr>
</thead>
<tbody>
<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>shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
