Learning HTML :: 01

    I'm so free in Fuzhou that I don't even have to do things! In order to kill time, I buy books from the bookstore to read. I've brought books that are related to web designs. First of all, I decide to learn HTML. It's a thing that you always meet, but you never know how it write it yourself. Therefore, I must at least study how to read and modify it.

    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.









    ::Example::
    1st Column, 1st Row2nd Column, 1st Row
    1st Column, 2nd Row2nd 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