How do I wirte a talbe in HTML?
HTML Tables
Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for “table data,” and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc.
Base on the tutorial, I write a little table here.
| Monday | Tuesday | Wednesday | Thursday | Friday |
| COMM2219 & COMM2219 Lecture | COMM1086 & COMM2413 Lecture | COMM1086 Tutorial | COMM2219 Lab | COMM2413 Tutorial & COMM2220 Workshop |



