Tutorial Pg.2
How to add text and images

       When you want to add text to your site you will place it in the <BODY> portion of the code. To add any text you want place a paragraph tag <P>, then start typing what you want. The text can be modified in may ways. You can change it by bolding it <B>, italizing it <I>. You can also change it by its size <font size="n">. When you change the size you only go up to 7. 7 is the biggest and 1 is the smallest. If you want you can change the font type with <font face="name">. One of the most popular way to change to text is the color. You can use <font color="name"> or <font color="000000">. The 000000 are the percentages for RGB. To have it at full use FFFFFF.

       Adding images is easy. To add the image type <img scr="location.html"> and the image should appear. If you want to change to width and height of the image use width="n" and height="n". Make sure that you place those in <img scr="location.html">.

How to add text and images
<BODY>

<P>
     Add the text that you want here.
     Use <B>, <I> to change how the text appears.
     Examples
     Hi     Hi

     Use <font size="n"> to change the size of the text.
     Example
     Hi

     Use <font color="n" or "000000"> to change te color of the text
     Examples
     Hi in RED by using the name
     Hi in RED by using 000000

     Use <img src="Location.html"> to get the image
Example
     To change to size use widtht="n" and height="n" Make sure it is like this <img src="location.html" width="n" height="n">
Example
</BODY>

Back Home Next