Advertisements
Advertisements
प्रश्न
Write HTML code for the following output :
Cricket Analysis
Country | Played | Won | Lose |
INDIA | 30 | 27 | 03 |
PAKISTAN | 30 | 03 | 27 |
संक्षेप में उत्तर
उत्तर
<!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
Hyper Text Markup Language (HTML)
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?