Skip to main content

Admission ticket

This is a meticulously designed exam admission ticket template featuring a standardized header section, candidate information form, and exam schedule table, complete with important notes for easy printing and distribution. Suitable for exams at all types of schools and training institutions, the template allows direct modification of names, exam rooms, seat numbers, and subjects for personalized customization.

Preview

Admission Ticket Preview

HTML

HTML Code
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Admission ticket</title>
<style>
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}

@media print {
@page {
size: A5 landscape;
margin: 0;
}
}

html, body {
height: 100vh;
width: 100vw;
}

table {
border-collapse: collapse;
text-align: center;
table-layout: fixed;
margin-bottom: 0.75rem;
}

table td {
padding: 0.5rem;
}
</style>
</head>
<body>
<table width="100%" border="1">
<tbody>
<tr>
<td colspan="5">
<h2>Admission ticket for the XXXX exam in XXX</h2>
</td>
</tr>
<tr>
<td colspan="5">
<b>Admission ticket</b>
</td>
</tr>
<tr>
<td>
Name:
</td>
<td>
Tom Smith
</td>
<td>
Gender:
</td>
<td>
Male
</td>
<td rowspan="4">
<img style="display: block" width="100%" height="100%" src="https://www.bkhtmltopdf.com/img/tom-smith.png"
alt="Tom Smith"/>
</td>
</tr>
<tr>
<td>
Examination room:
</td>
<td>
Exam Room 5
</td>
<td>
Seat number:
</td>
<td>
6
</td>
</tr>
<tr>
<td>
Candidate number:
</td>
<td>
2021
</td>
<td>
Test site:
</td>
<td>
7
</td>
</tr>
<tr>
<td>
School:
</td>
<td colspan="3">
XXXXX school
</td>
</tr>
</tbody>
</table>


<table width="100%" border="1">
<tbody>
<tr>
<td colspan="4">
<b>Exam schedule</b>
</td>
</tr>
<tr>
<td>
Exam date
</td>
<td>
9:00 - 11:00
</td>
<td>
13:10 - 14:50
</td>
<td>
15:20 - 17:00
</td>
</tr>
<tr>
<td>
6/8/2021
</td>
<td>
Language
</td>
<td>
Math
</td>
<td>
Politics
</td>
</tr>
<tr>
<td>
6/9/2021
</td>
<td>
Biology
</td>
<td>
Geography
</td>
<td>
Chemical
</td>
</tr>
</tbody>
</table>

<table width="100%" border="1">
<tbody>
<tr>
<td><b>Notes</b></td>
</tr>
<tr>
<td align="left">
<ol style="padding-left: 1rem;font-size: 0.85rem">
<li>The test answer sheet is printed with the integrity test commitment, please read it carefully and
sign on the name.
</li>
<li>Except for stationery, admission ticket and ID card, no items shall be placed on the table.</li>
<li>Examination papers are all sealed in plastic. Candidates have the right and obligation to check the
seal and sign before the invigilator unpacks it.
</li>
<li>No entry is allowed 30 minutes after the start of the test; no papers are handed in and no exit is
allowed before the end of the test.
</li>
</ol>
</td>
</tr>
</tbody>
</table>

</body>
</html>

Run Online