Learning HTML

    In order to use the Web for publishing, you will probably need to learn more about the structure of the Web and the HyperText Markup Language (HTML). HTML is the laguage used to create Web pages and is a subset of a more powerful language, the Standard Markup Generalized Language (SMGL). See the Internet Resources for more on SMGL.

All HTML tags are placed within "<>" and are used in pairs, with the initial tag specifying the start of the command and an ending tag signifying that the tag is no longer in effect. There are five basic HTML tags that almost any Web document includes:

  1. Header tags - H1, H2, H3, H4, H5, etc. - provide formating for document headers and subheaders. Example: <H1>

    HTML is Easy To Learn

    </H1>
  2. Text formatting tags - b, i, and u - specify bold, italic, and underline (respectively).
    Example: <i>This text should be in italics</i>
  3. Table formatting tags - ul or ol - specify unordered lists and ordered lists, where the ordered lists have numbers and unordered don't. Example: <ul><li>
  4. Anchor tags (also called references) - a href= - that specify hyperlinks to other web documents or sections of the current document. Example: < a href="http://www.yahoo.com">YAHOO Website</a>
  5. Paragraph formatting tags - p, br, etc. - that signify line feeds or carriage returns in text. Example: This text would end in a line feed<br>
There are a variety of helpful resources available that you can use to learn more about the Web and publishing. The list below is by no means complete, but is a small sample of the resources available. Some of these are self-paced tutorials that are available on-line, while others require you to register and take the "class" on-line over a set period of time.

Tip: When you are browsing the Web and you find a Web document that looks interesting or attractive to you, use the Document Source option off the View menu in Netscape Navigator to examine the HTML tags.

Internet Resources


AGT-10/01/96