Computer Science, asked by anjisingh12211816, 4 months ago

write the HTML code to generate the following output of a table​

Attachments:

Answers

Answered by sahil10august
2

<html>

<head>

<title> Table </title>

<head>

<body>

<table border="1px" >

<tr>

<td>ADMNO</td>

<td>SNAME</td>

<td>Name</td>

<td>DOB</td>

</tr>

<tr>

<td>1110</td>

<td>MANJIT</td>

<td>RANJIT</td>

<td>4-May-1998</td>

</tr>

</table>

</body>

</html>

Similar questions