0
1.5kviews
Write HTML program to display class timetable

Mumbai University > Information Technology > Sem 4 > Web Programming

Marks: 10M

Year: Dec 2014, Dec 2015

1 Answer
0
1views
<!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>
Please log in to add an answer.