Easy way to build a web page
Download free HTML Validator Program: http://www.htmlvalidator.com/
After installing HTML Validator, start a new document, and paste the following and save as index.html
<html>
<head>
</head>
<body>
</body>
</html>
Add these tags between <head></head>
<title>Title of Your Web Page</title>
<base href="http://www.yourdomain.org/directory/url.html">
<meta content="A brief description of your web page." name=description>
<meta content="keywords, that, describe, your, web page" name=keywords>
<meta content="index,follow" name=robots>
Add your text between <body></body>
<p>Your text here.</p>
Place these tags around text you want to format
<em></em> or <i></i> for indent.
<strong></strong> or <b></b> for bold.
<u></u> to underline.
Save your document and upload to your server space.
You should find your document located at http://www.yourdomain.org/directory/url.html
|