0% found this document useful (0 votes)
16 views1 page

New 1

The document contains an HTML markup for a student marksheet. It includes a table with columns for student name, marks, and total. The table contains rows for two students - Ronak Sheladiya with internal marks of 30, external marks of 60 and total of 90. The second student is Tarun Sukheja with internal marks of 29, external of 60 and total of 89.

Uploaded by

zashsheladiya
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)
16 views1 page

New 1

The document contains an HTML markup for a student marksheet. It includes a table with columns for student name, marks, and total. The table contains rows for two students - Ronak Sheladiya with internal marks of 30, external marks of 60 and total of 90. The second student is Tarun Sukheja with internal marks of 29, external of 60 and total of 89.

Uploaded by

zashsheladiya
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/ 1

<html>

<head>
<title>MarkSheet</title>
<link rel="stylesheet" href="D:\WEB\Bootstrap\bootstrap-4.6.2-
dist\css\bootstrap.min.css">
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<div class="container">
<center>
<table class="table table-bordered table-hover
table-dark">
<th colspan=6">MarkSheet</th>
<tr>
<td rowspan="2">No</td>
<td colspan="2">Full name</td>
<td colspan="2">marks</td>
<td rowspan="2">total</td>
</tr>
<tr>
<td>First name</td>
<td>lastname</td>
<td>internal</td>
<td>external</td>
</tr>
<tr>
<td>1.</td>
<td>Ronak</td>
<td>Sheladiya</td>
<td>30</td>
<td>60</td>
<td>90</td>
</tr>
<tr>
<td>2.</td>
<td>Tarun</td>
<td>Sukheja</td>
<td>29</td>
<td>60</td>
<td>89</td>
</tr>
<tr>
<td><input type="submit"
class="btn"></td>
</tr>
</table>
</center>
</div>
</body>
</html>

You might also like