Showing posts with label Tag. Show all posts
Showing posts with label Tag. Show all posts

HTML - Creating Tables

A table is an excellent way of organizing information and presenting it in a readable and meaningful manner. 
The TABLE tag defines the beginning of the table. The use of CAPTION tag is optional. If you use it, a heading is given.
Next comes the TR tag. It stands for Table Row. It indicates the beginning of a row. Then to define the contents of each cell in that row, we have to use the TD tag which stands for Table Data
LEARN MORE>>

Html Text Formatting

The basic formatting that can be applied to a webpage is for the text. By default, the Times Roman forn at 12 points is used. This can be changes according to our desire by using the FONT tag as shown belo
FACE : allows you to specify the font name like Times Roman, Courier, Arial etc.
SIZE: allows you to give a number from 1 (size 8 points) to 7 (size 36 points).

COLOR: allows you to specify the name of the color you wish to apply to the text.

 LEARN MORE>>

HTML Formatting

First we have to let the browser know that this file is indeed a HTML file. So the first code in any HTML file must be:


So it follows that at the end of the file we must give the tag .

The actual content of the page must be put within the BODY tag. though this is not compulsory, it gives you control of the basic look of the page by allowing you to specify the general font and background feature. LEARN MORE>>