Text
Page
Just like everything else in an HTML document, text can be modified by tags.
You can change a text's size, style, form, and color.
There are six different heading 'sizes', numbered 1 to 6, 1 being the largest and boldest. To turn regular text into a heading text, all you have to do is place the text between these two tags: <H#> and </H#>. For example:
To change the font of text: <font face="name of font">text</font> To change the font size of the text: <font size="+ or - #">text</font> To change the font color: See below And of course all these can be put together (in any order), and if you do, you only need one </font> instead of three. Here's what I mean: or <font face="arial"> <font color="#3D0C65"> <fontsize="+2">text </font> </font> </font> Listed below are some font styles and effects:
If you wish to change the color of just a small section of text, just place the text between: In HTML, every color is given a six letter-number code, and since nobody is expected to memorize this code, here's what you do:
Whitespace, Tabs, and whatever else is usually used to
organize and separate text is read and seen as a single space when it is viewed by a
HTML browser. So, since nobody wants their text to be one long paragraph, there are special
'solitary' tags used to separate and shape your text. These tags are 'solitary' becuase
they're not paired with a 'close' tag. Here's a list:
<center> centered text </center> <p align=right>aligned right text </p>
<p align=left> aligned left text </p>
In this page formatting section are the formatting options that are done within the opening body tag of an HTML document. These options include overall text color, the color of links, and options for your background. For example, the body tag for this page is: alink="#006633" background="bgall.gif" bgproperties="fixed">
Within the body tags, you can change :
There are 2 types of image backgrounds, one is a tiled background (like this page), and the other is a border background (like my home page). Here's a tip: If you choose a tiled background, it is important that it isn't too "noisy" or "loud", because then it interfers with the page itself, causing it to be an eyesore. I'm not saying that all of your backgrounds should be faded, dark backgrounds are great too -- with white text. As long as the text contrasts with the background, viewers shouldn't have any trouble looking at your page. If you prefer a border background, you obviously don't want to write over the border. However, HTML can't distinguish border backgrounds from tiled ones. Thus, you have to write within a table, whose size is only a certain percent of the page, and align it to either the left, right, or center. If you're confused, just click here. Something cool that you can do with backgrounds is make them fixed. By this I mean that as you scroll down the web page, the background picture doesn't move. An example would be this page. To make your background picture stationary, just type within the body tag <BODY bgproperties= fixed>. However, this property is only supported by Internet Explorer and not Netscape.
|