1 2 3 4 5 6 7 8 9 10 11 12 13 14
Back to the Lessons Index


Creating a Web Page
-----------------------------------

Software Packages (creating the document from scratch):

o HotMetaL Pro 3.0
o Microsoft Front Page 1.1
o Any Text Editor

Conversion Packages (convert existing file to HTML):

o Web Publisher (www.skisoft.com)
o HoTMetaL Pro 3.0
o Microsoft Internet Assistant - for Office 95.

---> No package really does it all  <-----
     will HAVE  to do some manual
       editing of your pages.  



The "cheater's" way to get your content up on the Web Fast and with
minimal editing?
------------------------------------------------------------------

1.  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.

2.  Another shortcut is the use of the <PRE> </PRE> tags. All text
placed between the tags will be displayed in text format, recogniz-
ing 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>


View the source of this page.