Computer Science, asked by alkeshyadav1607, 5 months ago

Write an html code to generate the following outputs​

Attachments:

Answers

Answered by sreyasinharkl
2

Answer:

<html>

<head>

<title> Table of Student Result </title >

</head>

<body>

<table border = 3 cell padding = 10 >

<caption > Table : Student Result </caption>

<tr>

<th> Student Name </th>

<th> Roll No. </th>

<th> Marks </th>

</tr>

<th> Arden </th>

<th> Ava </th>

<th> Beojimin </th>

</ tr>

<tr>

<th>01 </th>

<th> 02 </th>

<th> 03 </th>

</tr>

<tr>

<th> 80% </th>

<th> 70% </th>

<th> 89% </th>

</tr>

</table >

</body>

</html>

Similar questions