| 1. Open Wordpad
Text Editor () |
2. Enter
the following text:
<html>
<head>
<title>My Practice Document Title</title>
</head>
<body>
This is the body text of my <b>practice document</b>.
</body>
</html> |
|
Every
document in HTML format (Web page), MUST contain the following
code:
<HTML>
<HEAD>
<TITLE></TITLE></HEAD>
<BODY>
</BODY>
</HTML>
1.<HTML> - Declares
this an HTML document.
2.<HEAD> - The Head contains optional information about the
document.
3.<TITLE> - The Title is what displays in browser title bar.
4. </HEAD> - Closes the Head.
5. <BODY> - Body contains the document's displayable content.
6.</BODY> - Closes the Body.
7. </HTML> - Closes the HTML.
Because the document that
we will be pasting into already contains all of the
items above, we only need to insert the HTML coding
that belongs inside the body tags. |
| 3. Save the document
to your A: drive or hard drive. Name the document practice.htm |
| 4. Open Netscape
Navigator, select File --> Open File.
Navigate to your practice.htm file to view
practice.htm in Netscape Navigator. (take notice of the
document title and bold text). |
| 5. Using Wordpad, open practice.htm. Look
at the HTML
Cheatsheet to add more markup tags and text. After you
have the page the way you want it, test your web page in
the Netscape browser. |