Basic html

First, we need to put some stuff into our .html file, to tell the user's computer what to expect. We do this in the head of our html document. Try this:

<HTML>
  <HEAD>
     <TITLE>
     This is the page title! Personalize it!
     </TITLE>
     <LINK REL=StyleSheet HREF="myname.css" TYPE="text/css">
  </HEAD>

You'll notice a few things in the example above:

If you try to load your page now, you'll see it's pretty boring -- in fact, it's totally BLANK except for the title right at the top of the window. Let's add some fun stuff!
  <BODY>
     <H1>
       This is the header of my page!
     </H1>
     <P>
	This is a paragraph about me.  My name is Rosemary, and I'm 
        26 years old. I like to program computers, teach, and make webpages 
        for my friends.  I also like to play with my two cats, Ra and 
        Nephthys.  I live in a house with pink and turquoise paint.
     </P>
     <P>
        This is another paragraph about me.  I have a little brother.  
        I lived in ten different places when I was a kid!  My mom and dad
        live in Boston, Massachusetts.  I miss them a lot.
     </P>

  </BODY>
</HTML>

Things to notice:

If you try to load this page, you'll get something like this:

This is the header of my page!

This is a paragraph about me. My name is Rosemary, and I'm 26 years old. I like to program computers, teach, and make webpages for my friends. I also like to play with my two cats, Ra and Nephthys. I live in a house with pink and turquoise paint.

This is another paragraph about me. I have a little brother. I lived in ten different places when I was a kid! My mom and dad live in Boston, Massachusetts. I miss them a lot.

Put in some stuff about yourself!

Let's see if we can spice it up using some color!