Create a table using HTML which consist of colums for Roll no. Student’s Name and Gread.

Create a table using HTML  which consist of colums for Roll no. Student’s Name and Gread.

 

<!DOCTYPE html>

<html>

<head>

<title>Craeting Table</title>

</head>

<body>

<table border="2" width="400" height="250" align="center">

<th colspan="3">Result</th>

<tr>

<td><b>Roll No.</b></td>

<td><b>Name</b></td>

<td><b>Grades</b></td>

</tr>

<tr>

<td>16</td>

<td>Achal</td>

<td>A+</td>

</tr>

<tr>

<td>17</td>

<td>Priyanka</td>

<td>B+</td>

</tr>

 

</table>

</body>

</html>


 


Comments