Site hosted by Angelfire.com: Build your free website today!


HTML Lessons

-Getting Started

-Page Setup

-Text Manipulation

-Linking Text/Images

-Basic Tables

-More on Tables

-Frames

-Test Your Skills
Misc.

-Credits Page

-Main Page
-Cemetery Photography
Contact

-E-mail me

-Sign my guestbook


To get started in HTML, you must first understand its basic principles. HTML is composed of a series of "tags". These tags will always take the form of <***>, with the * representing whatever command you want to put in. For example, the basic setup tags for a webpage will look like this:

<html>
<body>

Content of page goes here.

</body>
</html>

Note the bottom tags have a / before the word inside them. For most tags, this is how you close them or tell them to stop working. The first <html> is always the first tag you put in when building a webpage. It tells the web browser that this is an HTML file, and that it should follow the rules of HTML to display the page correctly.

The first <body> is the opening tag for the body of the page. The body of the page is where the majority of the content is located. In these tutorials, the commands that I show you will always go in between to two body tags unless otherwise noted. Note that you do not have to close out the <html> and the <body> tags, but it is good to get into the habit so you don't run into problems with the other HTML tags.

<<<<Main page |||||| Next lesson>>>>