Posts

Showing posts from April, 2021

How to Create Time-Table schedule using HTML ?

Image
 How to Create Time-Table schedule using HTML ? A Table is an arrangement of rows and columns. Anyone can create a table by knowing the basics of HTML(HyperText Markup Language). A table is defined by using <table> tag in HTML. Steps to Create a Table: Create a <html> tag. Create a table using the tags <table></table>. Create rows in the table using <tr>This is the row tag</tr>. Insert the data into rows using <td> Table Data</td> tags. Close the table tag.  Close the html tag </html>. This is the basic Time table created in HTML without the usage of font color and background colors. (This is the basic Time table created in HTML without the usage of font color and background colors.) Example: <!DOCTYPE html> <html> <body> <h1>TIME TABLE</h1> <table border="5" cellspacing="0" align="center"> <!--<caption>Timetable</caption>--> <tr>