After weeks of study, I started to understand the coding of HTML now. I wrote a table last month in my blog, I think I can add new stuff I learned from tut into it.
<table border=”" > means how thickness the border is, empty or “0″ means no border.
<tr> sets rows, <td> </td> sets table cells and <th> </th> sets table headers
Now into the important part, what are <colspan> and <rowspan>, basically they are column span and row span.
Example of <colspan>
| My name | Mobile | My studies | ||||
|---|---|---|---|---|---|---|
| July | 0433037077 | 0433219072 | Networked Media | Mass Media in Asia | Broadcast Media | Histories and Technologies |
Example of <rowspan>
| My name | July |
|---|---|
| Mobile | 0433037077 |
| 0433219072 | |
| My studies | Networked Media |
| Mass Media in Asia | |
| Broadcast Media | |
| Histories and Technologies |
WOW, I spent so much time on just to create these two tables, it is not very familiar for me to made tables so far, I still need to practise more.
In the end, I would like to add some background colour on it using <bgcolor=” “>
Let me take this table for example,
| My name | July |
|---|---|
| Mobile | 0433037077 |
| 0433219072 | |
| My studies | Networked Media |
| Mass Media in Asia | |
| Broadcast Media | |
| Histories and Technologies |
