|
|
How to HTML ?HTMLWeb pages are composed of text and a markup language called hypertext markup language (html). A markup language consists of simple commands to create headers, ordered lists, paragraphs, links, etc...There are editors which aid in the composition of html documents. Xhtml is one which works on Ultrix, html assistant is one which works on PC's. There are many others. These editors allow you to easily create the proper markup tags. For example... <HTML> <HEAD> <TITLE> This is the page title </TITLE> <HEAD> <BODY> The body of the document blah, blah, blah </BODY> </HTML> Which looks like this... This makes a first level headerWhich looks like this... This makes a second level headerThis makes an un-ordered list...<ul> <li> List Item <li> List Item <li> List Item </ul> Which looks like this...
This makes an ordered list...<ol><li> List Item One <li> List Item Two <li> List Item Three </ol> Which looks like this...
Make it underlined <u>underlined</u> Make it <h6>Make it a very little header</h6> Make it a very little header![]() It looks like this.. Here is a link to another document < IMG ALIGN=RIGHT SRC="mudbug.gif" > It "looks" like this...
Pages are easily created by finding one you like, saving it as html on your user id and modifying it. File->Save as->html->give it a name. It is suggested that you use the name index.htm for your first file (for security reasons). |
|