0% found this document useful (0 votes)
14 views6 pages

EXAM ROUTINE PRACTICE HTML - HTML

Uploaded by

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

EXAM ROUTINE PRACTICE HTML - HTML

Uploaded by

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

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Exam Routine</title>

<style>

body {

font-family: Arial, sans-serif;

margin: 0;

padding: 0;

background: linear-gradient(to bottom, #f0f8ff, #add8e6);

h1 {

text-align: center;

color: #fff;

background-color: #0073e6;

padding: 20px;

margin: 0;

table {

width: 80%;

margin: 30px auto;

border-collapse: collapse;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

th, td {

border: 1px solid #ddd;

text-align: center;

padding: 10px;

th {

background-color: #0073e6;

color: white;

td {

font-size: 16px;

color: #333;

tr:nth-child(even) {

background-color: #f2f2f2;

tr:nth-child(odd) {

background-color: #e6f7ff;

.subject {

font-weight: bold;

color: #006400;

}
</style>

</head>

<body>

<h1>Exam Routine</h1>

<table>

<thead>

<tr>

<th>Day</th>

<th>Date</th>

<th>Subject</th>

<th>Time</th>

</tr>

</thead>

<tbody>

<tr>

<td>Monday</td>

<td>20th Jan</td>

<td class="subject">Physics</td>

<td>9:00 AM - 12:00 PM</td>

</tr>

<tr>

<td>Tuesday</td>

<td>21st Jan</td>

<td class="subject">Chemistry</td>

<td>9:00 AM - 12:00 PM</td>


</tr>

<tr>

<td>Wednesday</td>

<td>22nd Jan</td>

<td class="subject">Mathematics</td>

<td>9:00 AM - 12:00 PM</td>

</tr>

<tr>

<td>Thursday</td>

<td>23rd Jan</td>

<td class="subject">Biology</td>

<td>9:00 AM - 12:00 PM</td>

</tr>

<tr>

<td>Friday</td>

<td>24th Jan</td>

<td class="subject">Hindi</td>

<td>9:00 AM - 12:00 PM</td>

</tr>

<tr>

<td>Saturday</td>

<td>25th Jan</td>

<td class="subject">English</td>

<td>9:00 AM - 12:00 PM</td>

</tr>
<tr>

<td>Monday</td>

<td>27th Jan</td>

<td class="subject">Computer Application</td>

<td>9:00 AM - 12:00 PM</td>

</tr>

</tbody>

</table>

</body>

</html>

You might also like