As discussed earlier, Hypertext Markup Language (HTML) is the language of the Web. Now we are going to experiment with Hypertext by creating a personal home page written entirely in Hypertext on a simple text editor. As you will see, we don't need to know too much about Hypertext to get started.
Below is an example of an HTML document.
<HTML> <HEAD> <TITLE>My Home Page</TITLE> </HEAD> <BODY BGCOLOR="#ffff00"> <H1><CENTER><FONT COLOR="#0000ff" SIZE="+4">Home Page for Web E. Learner</FONT></CENTER></H1> <H3><CENTER><FONT COLOR="#ff0000" SIZE="+2">Welcome to my Homepage!</FONT></CENTER></H3> <P><FONT COLOR="#ff00ff" SIZE="+3">Some of my favorite Websites:</FONT></P> <UL> <LI><A HREF="http://weblearner.freeservers.com/"><FONT SIZE="+1">webLearner</FONT></A> <LI><A HREF="http://members.spree.com/sip/mckinley/"><FONT SIZE="+1">McKinley School Website</FONT></A> <LI><A HREF="http://www.sanleandro.k12.ca.us/"><FONT SIZE="+1">San Leandro Unified School District</FONT></A> </UL> </BODY> </HTML> |
|
You have just constructed a very simple homepage using plain HTML! But this is only the beginning! As we continue with the Netscape Composer tutorial, you will learn how to add more to this home page, such as tables, images, and other Web elements. Stay tuned, folks! As they always say, the best has yet to come!