Advertise here.

Sunday, 12 August 2012

HTML lesson #4 - Tables

In this lesson we are going to learn about tables. Tables are one of the most important things in web site building. Just about all websites use tables but you don't see them very often because they're hidden. Tables are used to format the text and images. Your first table To create a table you need to use the <table> tag. Here is what it look like: <table></table> As you can see they're just like normal tags but you have not got a table yet. You need to make table rows that contain table cells which hold your data. The <tr>...

HTML lesson #3 - Images and links

In this lesson we will learn about: -Putting images on your page -Links -Viewing other people's source code Putting images on your page To put an image on your page you must use the <IMG> tag. Notice that I say tag and not tags. <img src="smile.jpg"> The result will be: You can use the ALT property for when a picture doesn't show up: <img src="nothing.jpg" alt="Picture not available"> Result: Notice the yellow...