0% found this document useful (0 votes)
2K views2 pages

Marksheet HTML Code

The document contains a mark sheet table with 4 rows displaying subject names, theory and practical marks, total marks, GPA and percentage for each subject. The table has a red border and displays the subject name, marks scored in theory and practical exams, total marks, GPA and percentage for 4 subjects - Physics, Physics, Chemistry and Computer.

Uploaded by

Sujal Nepal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views2 pages

Marksheet HTML Code

The document contains a mark sheet table with 4 rows displaying subject names, theory and practical marks, total marks, GPA and percentage for each subject. The table has a red border and displays the subject name, marks scored in theory and practical exams, total marks, GPA and percentage for 4 subjects - Physics, Physics, Chemistry and Computer.

Uploaded by

Sujal Nepal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html>
<head>
<title>this is a test</title>
</head>
<body>
<table border="2" width="50%" bordercolor="red">
<tr>
<th colspan="7">Mark Sheet </th>
</tr>
<tr>
<th rowspan="2"> S.N</th>
<th rowspan="2"> subject</th>
<th colspan="2">Marks</th>
<th rowspan="2">Total</th>
<th colspan="2">GPA</th>
</tr>
<tr>
<th>TH</th>
<th>PR</th>
<th>GPA</th>
<th>%</th>
</tr>

<tr>
<td>1</td>
<td>Physic</td>
<td>25</td>
<td>25</td>
<td>50</td>
<td>2.5</td>
<td>50%</td>

</tr>
<tr>
<td>2</td>
<td>Physic</td>
<td>25</td>
<td>25</td>
<td>50</td>
<td>2.5</td>
<td>50%</td>

</tr>
<tr>
<td>3</td>
<td>Chem</td>
<td>25</td>
<td>25</td>
<td>50</td>
<td>2.5</td>
<td>50%</td>

</tr>
<tr>
<td>4</td>
<td>Comp</td>
<td>25</td>
<td>25</td>
<td>50</td>
<td>2.5</td>
<td>50%</td>

</tr>
</table>
</body>
</html>

You might also like