Your first web page was created with a Wizard. You told the wizard what you wanted on your page and it generated the HyperText Markup Language (HTML) to create that page.
Look at your page in Netscape or Internet Explorer. Use File-Open to browse to your page (i.e., "C:\webclass\char\firstpage.html"). How do the colors look? Can you read the text against the colored background, if any?
The HTML contains both the text that you supplied, plus
tags to tell the browser how to format it.
You can recognize the tags because they start with
a less-than symbol <
and end with a
a greather-than symbol >
.
Most tags apply to section of text, causing it to
be shown in Bold or whatever.
In the HTML below, you
should spot <CENTER>
, which says to start
centering the text and
</CENTER>
which says to
to stop centering. Don't worry that you don't know
what all the tags do in this example -- you will learn
them over the next few days. Can you find the tag
that causes your selected picture to display on
your web page?
<HTML>
<!--This page was created with HTML Express-->
<HEAD><TITLE>My First Web Page</TITLE></HEAD>
<BODY BACKGROUND="WP0047.JPG" TEXT="#004080">
<CENTER>
<H1>Live from Tropical Anguilla</H1>
<HR WIDTH=50%>
</CENTER>
<CENTER>
<H2>On the Beach</H2>
<HR WIDTH=50%>
</CENTER>
<CENTER>
<img src="COVEBAY.JPG">
</CENTER>
<HR WIDTH=50%>
My name is BOb and I live in anguilla, british
west indies, eastern caribbean.
My favorite sport is snorkeling.
My wife Mary Ann likes to build houses.
<HR WIDTH=50%>
<H3>Here are some links:</H3>
<UL>
<LI><A HREF="http://www.pe.net/~coolkev/">Kevin's Homepage</a>
<LI><A HREF="http://news.ai">anguilla</A>
<LI><A HREF="http://search.ai">search</A>
<LI><A HREF="http://hotels.ai">hotels</A>
</UL>
<HR WIDTH=50%>
You can reach me by e-mail at: <A HREF="mailto:[email protected]">[email protected]</A>
<HR>
This Web Page was created on 11/27/98 with <A HREF="http://www.pe.net/~coolkev/htmlexpress.html">HTML <i>Express</i></A>
</BODY>
</HTML>
Here is what the other tags in this sample accomplish:
Back to the GetStarted Page