move the table out and iframe it in so it's actually plain

This commit is contained in:
2023-12-09 11:58:33 +05:30
parent 81ab201d42
commit 3a41acb69c
2 changed files with 84 additions and 70 deletions

View File

@@ -26,73 +26,4 @@ desc: >
</div> </div>
</header> </header>
<article> <iframe src="./plainformat" width="100%" height="200px"></iframe>
<table>
<thead>
<tr><th>Student Details</th></tr>
</thead>
<tbody>
<tr>
<td>Semester</td><td>II</td>
</tr><tr>
<td>Name of the Student</td><td></td>
</tr><tr>
<td>Course/Programme</td><td></td>
</tr><tr>
<td>Roll Number</td><td></td>
</tr><tr>
<td>Category</td><td>General / EWS / OBC / WDP / SC / ST / VHC / PHC</td>
</tr><tr>
</tr>
<tr><td>Phone Number</td><td></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr><th>Payment Details</th></tr>
</thead>
<tbody>
<tr>
<td>Name of Account Holder</td><td></td>
</tr>
<tr>
<td>Account Number</td><td></td>
</tr>
<tr>
<td>Name of the Bank</td><td></td>
</tr>
<tr>
<td>Branch</td><td></td>
</tr>
<tr>
<td>IFSC Code</td><td></td>
</tr>
<tr>
<td>Amount Paid</td><td></td>
</tr>
<tr>
<td>Date of Payment</td><td></td>
</tr>
<tr>
<td>Payment Mode</td><td>SBI to SBI / NEFT / IMPS / UPI</td>
</tr>
<tr>
<td>Transaction Number</td><td></td>
</tr>
<tr>
<td>Reference Number</td><td></td>
</tr>
<tr>
<td>UTR Number</td><td></td>
</tr>
<tr>
<td>INB Reference Number <small>(SBI to SBI)</small></td><td></td>
</tr>
<tr>
<td>Challan Number</td><td></td>
</tr>
</tbody>
</table>
</article>

View File

@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width">
</head>
<body>
<style>
table { border-collapse: collapse; margin-bottom: 5px; }
td { border: solid #9a9a9a 1px; padding: 3px 5px; }
thead { text-align: left; }
</style>
<table>
<thead>
<tr><th colspan="2">Student Details</th></tr>
</thead>
<tbody>
<tr>
<td>Semester</td><td>II</td>
</tr><tr>
<td>Name of the Student</td><td></td>
</tr><tr>
<td>Course/Programme</td><td></td>
</tr><tr>
<td>Roll Number</td><td></td>
</tr><tr>
<td>Category</td><td>General / EWS / OBC / WDP / SC / ST / VHC / PHC</td>
</tr>
<tr><td>Phone Number</td><td></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr><th colspan="2">Payment Details</th></tr>
</thead>
<tbody>
<tr>
<td>Name of Account Holder</td><td></td>
</tr>
<tr>
<td>Account Number</td><td></td>
</tr>
<tr>
<td>Name of the Bank</td><td></td>
</tr>
<tr>
<td>Branch</td><td></td>
</tr>
<tr>
<td>IFSC Code</td><td></td>
</tr>
<tr>
<td>Amount Paid</td><td></td>
</tr>
<tr>
<td>Date of Payment</td><td></td>
</tr>
<tr>
<td>Payment Mode</td><td>SBI to SBI / NEFT / IMPS / UPI</td>
</tr>
<tr>
<td>Transaction Number</td><td></td>
</tr>
<tr>
<td>Reference Number</td><td></td>
</tr>
<tr>
<td>UTR Number</td><td></td>
</tr>
<tr>
<td>INB Reference Number <small>(SBI to SBI)</small></td><td></td>
</tr>
<tr>
<td>Challan Number</td><td></td>
</tr>
</tbody>
</table>
</body>
</html>