CREATE TIME TABLE SCHEDULE USING HTML within 1 Minute

HTML tables are easy to create for web pages. You can create anything like exactly that you can create on excel sheets or any platforms you use to create tables.
You can check more HTML Tutorials to understand more about HTML Table. It is also easy to create a table with 6 rows and 5 columns.
TIME TABLE SCHEDULE USING HTML
<h3 align=center><b><u>Morning Bus Times</u></b></h3><br> <table align="center" border="5" width="55%" height="55%" style="table-padding:2px; text-align:center; border-color:black;" cellspacing=1px cellpadding=1px> <tr bgcolor=blue style="color:white; font-weight:bold;"> <td colspan=2 rowspan="2"> </td> <td colspan=2>Dharan</td> <td rowspan=2>Biratnagar</td> </tr> <tr bgcolor=blue style="color:white; font-weight:bold;"> <td>Itahari</td> <td>Lahan</td> </tr> <tr > <td colspan=2 bgcolor=red>Weekdays</td> <td>4:35am</td> <td>6.05am</td> <td>7:30am</td> </tr> <tr> <td rowspan=2 bgcolor=red>Weekends</td> <td bgcolor=red>Sat</td> <td>5:15am</td> <td>6:35am</td> <td rowspan=2>7:35am</td> </tr> <tr> <td bgcolor=red>sun</td> <td>-</td> <td>6:30am</td> </tr> </table>