Yahoo! - Geocities - Yahoo! Mail - Home

Y!GeoHelp may not support below link.

Links

Quick Login

Geocities Guidlines

Geocities Server Stautus

Suported File Types

Counter Manager

Message Boards

Page Puilder

File Manager

Geoguide Manager

Edit Pages

Home Page Settings

Add-Ons

Ez Upload

Account Info

Home Page Wizzards

Neighborhoods

Pages That Pay

.
About This Site
.
More HTML Introduction
.
We'll start by learning some of the basic principles of HTML. If you type "Hello World" into your text editor, save, then hit reload in your browser; you will see
Hello World
Guess what you just made your first web page!

Now lets try this <Hello World> (save and reload) look on the page...nothing. Ahh you've learned a simple principle of HTML: any thing in < and > is hidden by the browser. Why hide them? Try this... "<b>Hello World" what do you see?
Hello World
Cool huh? Things with in < and > are used to ajust the properties of the page.

Lets say you want "Hello" in bold and "World" in regular. Type "<b>Hello</b> World" (S&R) You see
Hello World
If you add a slash / to a HTML code it stops the code (</b> stops <b>) Got it?

<HTML>
<HEAD>

<TITLE>
</TITLE>

</HEAD>
<BODY>

</BODY>
</HTML>

Lets end with a few codes showing the basic layout of a HTML page.

<HTML> - Starts your HTML Page

<HEAD> - Starts the head (where infromation about the page goes)

<TITLE> - Starts the Tittle Look way up on your screen this page's title is Y!GeoHelp Geocities Help Site - HTML Principles

</TITLE> - End Title

</HEAD> - Ends Head

<BODY> - Begins body where the main part of the page goes

</BODY> - Ends Body

</HTML> - Ends HTML page

.
Back