Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
854 B
2
Indexable
<html>
<head>
  <title>webpage</title>
  </head>
  <body>
  <table cellspacing=6 cellpadding=6 border=5 width=70% >
  <tr>
    <th colspan=6>student marksheet</th>
  </tr>
  <tr>
    <th rowspan=2>sr no.</th>
    <th rowspan=2>name</th>
    <th colspan=3 ">subject</th>
    <th rowspan=2 >total</th>
  </tr>
      <th>english</th>
    <th>maths</th>
    <th>science</th>
  <tr>
    
  </tr>
  <tr>
    <td>1</td>
    <td>student1</td>
    <td>60 </td>
     <td>70 </td>
     <td>40 </td>
   <td>170 </td>
    </tr>
    
     <tr>
    <td>2</td>
    <td>student2</td>
    <td>45 </td>
     <td>55 </td>
     <td>75 </td>
   <td>175 </td>
    </tr>
    
     <tr>
    <td>3</td>
    <td>student3</td>
    <td>45 </td>
     <td>45 </td>
     <td>60 </td>
   <td>150</td>
    </tr>
</table>
  </body>
  <html>