|
HTML Tutorial
The Tools You Need
You can build your web page with just the computer you now own (or rent).
All you need is a simple text editor such as Microsoft's Notepad or in my case, an old reliable
free text editor called Edit Pad Lite.
For your graphical images, your Windows Paint will do. That is, if a Photoshop program is currently
not available.
With these tools in your hand, you can start creating your web page.
Tutorial No. 1:
1. To use transitional HTML 4, type:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2. Make a title:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title>Creating Your Web Page</title>
Tip:
Make sure your title is relevant enough because this is the first
item the search engines will encounter from your site during the indexing process.
3. Do a description of your web page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title>Creating Your Web Page</title>
Rest of the body text and images. </head>
<body><h1>Heading of My Web Page</h1>
Rest of body sub-headings, text, and images
</body>
In succeeding tutorial lessons, we'll expand on the body structure.
4. End your web page structure
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title>Creating Your Web Page</title>
Rest of the body text and images.
</head>
<body><h1>Heading of My Web Page</h1>
Rest of body sub-headings, text, and images
</body>
</html>
Tips:
° The DOCTYPE element at the topmost line of your page is optional.
° The word DOCTYPE should be in capital letters.
|
And one important thing: We respect your
privacy. We will never share, lend or sell your email address. If you want to unsubscribe
from our list you can do so by using the link at the bottom of every email we send you.
|
|