Art, asked by 8311, 18 days ago

Write a program using HTML to design Monday time-table with 3 columns
(Sr.No., Time & Monday). Add 5 rows with the given headings & 4 subjects with timings

Answers

Answered by arunjkhare
0

Answer:

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

Similar questions