<HTML>
<HEAD>
<TITLE>Title of page goes here! This will be displayed in the title bar.</TITLE>
</HEAD>
<BODY>
This is where most of your information and html goes.
This is the main section of a web page---the body.
</BODY>
</HTML>
This is the basic set up for a web page!!! All web pages should have this.
<B>Bold Text!</B>
<U>Underlined Text!</U>
<I>Italicized Text!</I>
This shows the different ways you can write in.
Note: This is not a different font.
<P ALIGN="LEFT">
<P ALIGN="RIGHT">
<P ALIGN="CENTER">
These are the different ways that you can align text.
Left, Right, & Center. There is more than one way that you can center things.
TIP: You can replace the P with DIV, so it will not skip lines.
<A HREF="HTTP://WWW.SOMEWHERE.COM"> Go Somewhere </A>
It will look like this as a link:
Go Somewhere
You can also add an email link. The code is shown below!
<A HREF="MAILTO:SOMEONE@SOMEWHERE.COM"> Email Me! </A>
It will look like this:
Email Me!
Note: Some visitors that come to your site may not be set up to send email using Microsoft Outlook or Express. So it is good that you make a link and write your email address down plain, too.
To add a image type: <IMG SRC="FILE NAME">
You can also link images by typing this: <A HREF="HTTP://WWW.SOMEWHERE.COM">
<IMG SRC="FILE NAME"> </A>
In a harder lesson, you will be learning how to resize images and make thumbnails.