|
HTML & CSS Tutorials - Using Text
|
|
|
Using Text
Though text is probably the most importent on a website it is also the most simple to use. Just typing stuff into the body of your HTML file
is enough to make the text appear on your website. However there are ways in which you can manipulate the text on your site to make it look
good and organised
To make your text look organized it is very importent that you are able to spilt it up into paragraphs and that you can make the text stop
and continue on the line below.
To devide text into paragraphs we use the <p> and </p> tag. Just place the <p> tag at the begining
and the </p> at the end of each paragraph
To make the text continue on the next line when use a <br> tag. Just put this tag on the spot where you want the text to end. This
tag does not need closing, </br> does not exist
To make your text look good it is imporent to manipulate its font, its size and its color. This is very easily done.
The first thing to remember is that you have to enclose the selected text in the <font> and </font> tags. Now the font tag
can be equiped with attributes like face, size and color. A few examples:
<font face="fill in any font here">text</font>
Arial,
Times New Roman,
Verdana,
Helvetica.
|
<font size="fill in any size here">text</font>
1,
2,
3,
4,
5,
6,
7.
|
<font color="fill in any color here">text</font>
Black,
White,
Red,
Yellow,
Orange,
Blue,
Green,
Purple.
|
Learn to play around with these attributes a little. There are a lot of different combinations you can try out.
Tutorial © Lessa If you have any comments or questions please contact me
<< Back
|