0
99kviews
Write HTML program to display class timetable
1 Answer
1
6.0kviews

<!doctype html>

<html>

<head>

<title>Timetable</title>

</head>

<body>

<table width="80%" align="center” border=”2”>

<div id="head_nav">

<tr> <th>Time</th>

<th>Monday</th>

<th>Tuesday</th>

<th>Wednesday</th>

<th>Thrusday</th>

<th>Friday</th>

<th>Saturday</th>

</tr>

</div>

<tr>

<th>10:00 - 11:00</th>

<td>Applied Mathematics </td>

<td>Computer Networks</td>

<td>Information Theory and Coding</td>

<td>Computer Organization and Architecture</td>

<td>Automata Theory</td>

<td>Web Programming</td>

</div>

</tr>

<tr>

<th>11:00 - 12:00</th>

<td>Information Theory and Coding</td>

<td>Web Programming</td>

<td>Computer Networks</td>

<td>Computer Networks</td>

<td>Automata Theory</td>

<td>Applied Mathematics</td>

</div>

</tr>

<tr> <th>12:00 - 01:00</td>

<td>Applied Mathematics</th>

<td>Information Theory and Coding</td>

<td>Automata Theory</td>

<td>Computer Networks</td>

<td>Web Programming</td>

<td>Computer Networks</td>

</div>

</tr>

<tr>

<th>01:00 - 02:00</th>

<td>Applied Mathematics</td>

<td>Computer Organization and Architecture</td>

<td>Automata Theory</td>

<td>Web Programming</td>

<td>Information Theory and Coding</td>

<td>Computer Networks</td> </div>

</tr>

<tr>

<th>02:00 - 03:00</th>

<td>Applied Mathematics</td>

<td>Web Programming</td>

<td>Automata Theory</td>

<td>Computer Organization and Architecture</td>

<td>Information Theory and Coding</td>

<td>Computer Networks</td>

</div>

</tr>

</table>

how to write teachers name below the subject's name within inthe box???


Please log in to add an answer.