Archive for February, 2006

Cascading Style Sheets

Monday, February 20th, 2006

CSS (cascading style sheets) is a relatively new feature of Web construction. It gives both Web developers and users more control over how pages are displayed.
With CSS designers create “style sheets” that define how different elements, such as headers, links, backgrounds and fonts, of a Web page are displayed.
The term “cascading” derives from the fact that multiple style […]

Tables

Sunday, February 19th, 2006

Tables are often used to organise information on a Web page. Tables on a Web page are the same as tables in a word processor or spreadsheet. They consist of rows and columns.
The HTML markup for tables consist of 3 basic tags, they are;

table
tr (defines a table row)
td (defines a table column)

Here’s an example of […]

HTML

Sunday, February 5th, 2006

This lesson we will learn some basic HTML.
HTML stands for “HyperText Markup Language” and is the language of the Web. To create a Web page you at least need to know some basic HTML and understand how it works.
HTML code consists of “tags”, a start tag and an end tag. The following example creates bold […]