Table
Table
Source code:
<html>
<head>
<tittle> HTML table </tittle>
</head>
<body>
<h1 align ="center"> Student Information</h1>
<h2 align ="center"> Default Table</h2>
<table border ="1" cellpadding="10" cellspacing="5"align
="center">
<tr>
<th align="left"> Name </th>
<th align ="center"> age </th>
<th align="right"> Grade </th>
</tr>
<tr>
<th align="left"> john doe</th>
<th align ="center"> 17 </th>
<th align="right"> A+ </th>
</tr>
<tr>
<th align="left"> jane smith </th>
<th align ="center"> 18 </th>
<th align="right"> B+</th>
</tr>
<tr>
<th align="left"> Joslin </th>
<th align ="center"> 19 </th>
<th align="right"> D+ </th>
</tr>
</table>
</body>
</html>