0% found this document useful (0 votes)
13 views

Web Technologies: Design A Timetable and Display It in Tabular Format

The document shows code for designing a timetable and displaying it in a tabular format using HTML and CSS. The code contains a table with columns for days, subjects, duration, and time. It displays the schedule for a week from Monday to Friday.

Uploaded by

Ritesh Vashisht
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Web Technologies: Design A Timetable and Display It in Tabular Format

The document shows code for designing a timetable and displaying it in a tabular format using HTML and CSS. The code contains a table with columns for days, subjects, duration, and time. It displays the schedule for a week from Monday to Friday.

Uploaded by

Ritesh Vashisht
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Web Technologies

AIM: Design a timetable and display it in tabular format.


CODE:-
<!DOCTYPE html>
<html>
<head>
<title>Assignment</title>
</head>
<body>
<table border="5px" width="60%" cellspacing="5px" cellpadding="10px"
bordercolor="Darkorchid" align="center">
<tr><td colspan="4" align="center">Time table</td></tr>
<tr>
<th>Days</th><th>Subject</th><th>Duration</th><th>Time</th>
</tr>
<tr><td>Monday</td><td>English</td><td rowspan="5">---One Hour---</td><td>10
A.M</td></tr>
<tr><td>Tuesday</td><td>Physics</td><td>11 A.M</td></tr>
<tr><td>Wednesday</td><td>Chemistry</td><td>12 P.M</td></tr>
<tr><td>Thursday</td><td>Biology</td><td>2 P.M</td></tr>
<tr><td>Friday</td><td>Hindi</td><td>3 P.M</td></tr>
</table>
</body>
</html>
OUTPUT:-

You might also like