OneCompiler

Index.html

82
<!DOCTYPE html> <html> <head> <style> table { border: 2px solid #000; border-collapse: collapse; width: 300px; margin-top: 20px; } caption { font-weight: bold; font-size: 18px; margin-bottom: 10px; } th, td { border: 1px solid #000; padding: 8px; text-align: left; } </style> </head> <body> <table> <caption>Student Data</caption> <tr> <th>Name</th> <th>Roll No</th> <th>subject </th> <th>marks</th> <th>state</th>
</tr>
<tr>
  <td>Nitesh</td>
  <td>1664</td>
  <td>Math</td>
  <td>98</td>
  <td>jharkhand</td>
</tr>
<tr>
  <td>Raj</td>
  <td>1680</td>
  <td>Science </td>
  <td>97</td>
  <td>Bihar</td>
</tr>
<tr>
  <td>Rudra</td>
  <td> 452</td>
  <td> Social</td>
  <td> 91 </td>
  <td> West Bengal </td>
</tr>
</table> </body> </html>