| I have a list of companies that would like to host your website. Please Visit that list. Thanks. |
|
introduction very basic information what is important, and what doesn't matter the basic page HEAD and BODY HTML Tags META Tags backgrounds - colors backgrounds - images pictures links pictures as links email links tables part 1 tables part 2 lining things up frames part 1 frames part 2 frames part 3 what tools to use putting it all together making search engines love you viewing your page as you work making your page pay for itself page counters resources how do they do that? being sure it's right before you go public my links my sponsors What NOT to do |
Lining things upThere are two alignment controls you need to know about:Align - left, center and right Valign - top, middle and bottom You can use these controls in most of your HTML Tags. For example, if you are putting an image on your page, and you want it be on the right side, you should include ALIGN=RIGHT in your <IMG> tag. For example: <IMG SRC=mypicture.gif HEIGHT=69 WIDTH=200 ALT="my picture" ALIGN=RIGHT> You can also line things up using LISTS. There are ORDERED LISTS: <OL> and UNORDERED LISTS: <UL>. Both are used the same way. The difference is that numbers appear before each item in the ORDERED LISTS, and dots appear before each item in the UNORDERED LISTS. To make a list, you first use the opening list tag - either <UL> or <OL>, Then before each LIST ITEM you use the <LI> tag. You don't need to use a closing </LI> tag. For example: <OL> <LI> This is the first item <LI> This is the second item </OL>
<UL> <LI> This is the first item <LI> This is the second item </UL>
|
| I have a list of companies that would like to host your website. Please Visit that list. Thanks. |