Creating a Web Page

Software Packages:

 

Conversion Packages (convert existing files to HTML)

No package really does it all, you will HAVE to do some manual editing of your pages.

 

Is there a way to get your content up on the web fast and with minimal editing?

Convert your document to text only. Save it with the file extension "txt". Example: "myfile.txt". Please note, however: this method won't allow the including of pictures or hyperlinks or background colors. Your documents are ugly, but at least they are there.For example, this slide could have been written as a text document.

Another shortcut is the use of the <pre> </pre> tags. All text placed between the tags will be displayed in text format, recognizing carriage returns, tabs, spacing, etc. AND you can include graphics, hyperlinks, etc. Caution, this tag disables auto line wrapping within tables.

Example:

You can put in your basic headers:
<html>
<head>
<title>Your title</title>
<body bgcolor="#FFFFF">
<pre>Document body here, you can use hyperlinks and graphics within the tags.</pre>
</body>
</html>


1 2 3 4 5 6 7 8 9 10 11 12 13 14

Back to the Lessons Index Page