Tutorial #3:
|
THIS TUTORIAL IS VERY IMPORTANT!!! This is one of the main things needed to make a good web page.Take a look at this simple code...
|
Size 1 Size 2 Size 3 Size 4 Size 5 Size 6 Size 7 The default is size 3, unless you set it otherwise in your browser. |
This is H1 TextThis is H2 TextThis is H3 TextThis is H4 TextThis is H5 TextThis is H6 TextThere are only six 'H' tags. |
Do you understand? Good. The next thing is manipulating text color. The font color, like the background color, can be written in two different ways. First, normally, and second, the hexadecimal way. You can use basic colors like red, orange, yellow, etc. However, when you choose your font color, make sure it is readable without straining your eyes. Don't use yellow on a white background, for example. To make use of the header text, put in <h1> or <h2>, etc. When finished, use </h1>, </h2>, and so on.
The last thing is working with the font face. Faces include:
Times New Roman
Arial
Comic Sans MS
Calligrapher
Librarian
Bazooka
If you don't get these fonts, then your browser doesn't support them. So it is best to stick with simple fonts such as Times New Roman or Arial. If you're asking what happens if you don't put anything in, the answer is unclear. In your web browser, you can set what you want the font size, color, face, etc. to be.
The next thing you can do is apply some basic facelifts to your document. Some simple effects:
One minor thing: The blink tag might not work in Internet Explorer, but you shouldn't use it anyway.
The last major thing that you need to know about is text alignment. I have encountered three ways of doing this. Here's the first and most commonly used as of right now.
<div align="left">
<div align="center">
<div align="right">
When you're done with your specified align, use </div> to finish it off. The final way is a way that I rarely ever use. It is like this: <p align="left", "center", or "right">. It is in the typical <p> tag, and when you are done, you must input </p>.