CBSE BOARD X, asked by Purvi89, 1 year ago

write the html coding the given picture

Attachments:

Answers

Answered by Hemika
2

use the <table> tag under the <body> tag:-

<html>

<head>

<title>marks</title>

</head>

<body>

<table border>

<tr colspan="4">

<th>marks</th>

</tr>

<tr>

<th>eng</th>

<th>hindi</th>

<th>math</th>

<th>science</th>

</tr>

<tr>

<td>40</td>

<td>50</td>

<td>60</td>

<td>70</td>

</tr>

</table>

</body>

</html>

hope it helps u!! :)

Similar questions