Computer Science, asked by shahinkhusboo, 3 months ago

using the concept of tables create a web page displaying your class timetable​

Answers

Answered by prag12
3

Answer:

<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>

Similar questions