The Webmaster's Resource

Main Page Main Page

HTML Tutorials HTML

Design Tips Style

Promotion Tips Promotion

Links Links
      Web Rings
      Credits

Send the Webmaster E-mail Feedback
      Critique
      Sign In
      Guestbook



Sponsored by GeoCities
Get your
FREE web site!

 

<Getting Something
On The Page!>

 
[pixel]HTML documents have a certain format that you must follow so that web browsers can understand how to display your page.[pixel]Here is and example HTML document:

<HTML>
<HEAD>
<TITLE>Hello!</TITLE>
</HEAD>
<BODY>
HELLO WORLD WIDE WEB!<BR>
</BODY>
</HTML>

[pixel]Notice that almost all HTML tags are in pairs.[pixel] Paired tags have an open tag and a close tag.[pixel] For instance, the <HTML> tag is the open tag and the </HTML> tag is the close tag. [pixel]The <HTML> tags denote a document that is formatted for the World Wide Web.

[pixel]The <HEAD> tags define the heading of the document. [pixel]Within the <HEAD> section there are the <TITLE> tags, and in between the tags is the text "Hello!"[pixel] This tells your browser to display "Hello!" on the title line of the window and it is used for bookmarks.

[pixel]The <BODY> tags denote the main part of your document. [pixel]In this case we will display the words "HELLO WORLD WIDE WEB!" on the web page.[pixel]The <BR> tag at the end of the text is a line break. [pixel]&It;'s sort of like a carriage return.[pixel] When a browser sees a <BR> tag it starts the next text on the next line.[pixel] Finally, the </HTML> tag closes everything up.

[pixel]If you type the above file with any text editor, save it as text with the name hello.htm or hello.html you'll be ready to load it into your web browser. [pixel]To do this use the open file function of your browser. [pixel]You should see a blank page with the words, "HELLO WORLD WIDE WEB!" in the upper left corner.

     For more information about HTML, Site Design and Maintenance, check out the books in my Book Store.


Main Page Next
    Copyright © 1997 by Jim Meeker
    E-mail: jim314@oocities.com    ICQ: 724480
Updated on: 1/17/98 15:01:34 CST