1st Assignment:
Make a simple web page with HTML code.
- Open Notepad on your computer. (On Windows, usually go to "Start" then to "Programs" then "Assessories" and then
Notepad will usually be near the end.)
- Type in the code as shown below:
<HTML>
<HEAD>
</HEAD>
<BODY>
</BODY>
</HTML>
Make a title now, and put it in the HEAD, like this:
<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Now give yourself credit for doing all this work so far. You do this with a META tag, like this:
<META NAME="Author" CONTENT="Your Name Here">
Put the META tag in the HEAD so now it looks like this:
<HTML>
<HEAD>
<META NAME="Author" CONTENT="Your Name Here">
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
Well, guess what! What you have so far won't show anything at all in a browser window, (except you will see the title, "My
First Web Page," on the top status bar of your web browser).
So. . . . .Put a short text message between the body tags.
Here is Trina's very first web assignment:
<HTML>
<HEAD>
<META NAME="Author" CONTENT="Trina A-11">
<TITLE>Trina's First Web Page</TITLE>
</HEAD>
<BODY>
Hello, this is my web page. This is my typing on the web page.
</BODY>
</HTML>
And it looked like this!
(Note: This and most other page examples will load in a new browser window.
You may size that window so that it only takes up a small portion of this screen by clicking the small "box" button on the upper
right corner of the window. To close the new window, just click the "x".)
SAVE your program. Click on "Save As" and name the file firstpage.htm. It's very important that you put
dot(period)htm at the end of the name or it won't save as an HTML file.
Save the file to your disc. (You can set up a special folder for your HTML work there.)
Now reopen your file with your browser program. What do you see? Pretty cool, huh?
Lesson2 | Webmaster Club Main Page
Copyright ©2000, Marilyn Huffman. All rights reserved.