It's also helpful to blog. I can edit HTML of my blogs, so that I can put more elements into my posts. For example, you can't find table icon in the toolbar. However I always want to use table to show my information. After looking up in the book, I can now insert table into the blog. Let's take a look at how I do it.
| 1st Column, 1st Row | 2nd Column, 1st Row |
| 1st Column, 2nd Row | 2nd Column, 2nd Row |
::Code::
<table bgcolor="#000000" border="1"><tbody><tr>
<td style="color: rgb(255, 255, 255);">1st Column, 1st Row</td><td style="color: rgb(255, 255, 255);">2st Column, 1st Row</td>
</tr>
<tr>
<td style="color: rgb(255, 255, 255);">1st Column, 2nd Row</td><td style="color: rgb(255, 255, 255);">2nd Column, 2nd Row</td>
</tr>
</tbody></table>
I've shown you the simpliest example of using table in the blog, hope that you can understand what the codes are referring to. Although many software can help you with HTML, such as MacroMedia's Dreamweaver; it's still very valuable to understand it. I'll keep on my way and my target is to study fully about CSS, so that I can change my layout of my blog entirely!
No comments:
Post a Comment