Rotate your phone or change to desktop for better experience

Rotate your phone or change to desktop for better experience

6. Program to use table tag to format web page. Also create the Time Table of your class using table tag. || mm6


<!DOCTYPE html>

<html>

<head>

<title>HTML Time Table</title>

</head>

<body>

<h1>Time Table</h1>

<table border="1px" width="60%S" cellpadding="10px"  align="center">

<tr align="center">

 

    <th> Period</th>

    <th> Time </th>

    <th> Monday </th>

    <th> Tuesday </th>

    <th> Wednesday </th>

    <th> Thursday </th>

    <th> Friday </th>

    <th> saturday </th>

 

</tr>

 

<tr align="center">

    <td> 1st </td>

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

    <td> Chemistry </td>

    <td> Physics </td>

    <td> Math </td>

    <td> Computer </td>

    <td> English </td>

    <td rowspan="3"> project </td>

 

</tr>

 

<tr align="center">

    <td> 2nd </td>

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

    <td> Chemistry </td>

    <td> Math </td>

    <td> Computer </td>

    <td> English </td>

    <td> Physics </td>

   

 

</tr>

 

<tr align="center">

    <td> 3rd </td>

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

    <td> English </td>

    <td> Physics </td>

    <td> Computer </td>

    <td> Chemistry </td>

    <td> Math </td>

   

</tr>

 

<tr align="center">

    <td colspan="8"> Lunch Break (1:00 to 2:00)</td>

   

</tr>

 

<tr align="center">

    <td> 4th </td>

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

    <td> Chemistry </td>

    <td> Math </td>

    <td> Computer </td>

    <td> Physics </td>

    <td> English </td>

   

</tr>

 

<tr align="center">

    <td> 5th </td>

    <td> 03:00 - 04:00 </td>

    <td> Computer </td>

    <td> Math </td>

    <td> Physics </td>

    <td> English </td>

    <td> Chemistry </td>

   

</tr>

 

</table>

 

</body>

 

</html>

Post a Comment

0 Comments