A Bare-Bone Introduction To HTML
by K. Yue (revised: 8/21/2000)

General

Page Hosting HTML Development

Writing HTML programs:

Testing: HTML Structures, Elements and Tags <H1>
Homework Assignments
</H1>

<B>excellent</B>

<H1 ALIGN=CENTER>Homework Assignments</H1>
<A HREF="hw1.txt">Homework #1</A> <HTML>
<HEAD>
<TITLE> Title of your page.</TITLE>
</HEAD>

<BODY>
Body of your pages.
</BODY>
</HTML>

Navigation and Links

 <A HREF="http://turquoise.rocks.uhcl.edu/yue/csci4230/f99/index.html">CSCI 230 Software Tools</A> HREF = "URL"  URL address of the hyperlink.
NAME = "string"  Name of the anchor point for reference (with a # before the name).
REL = "string"  Relationship of the link to the current page.
REV = "string"  Reverse relationship of the link to the current page.
TITLE =  "string"  Title of the linked page for preview.
METHODS = "string" HTTP methods mainly for CGI programming.
TARGET = "window" Display linked page in targeted frame.  Some examples:
     "_blank" new, unnamed window.
     "_self"  current window.
     "_parent" parent window.
     "_top"  window containing the top document.

Graphics

<IMG SRC="banner1.gif"
          ALT="University of Houston - Clear Lake"> ALIGN = "align" Top, bottom, middle, left, right, etc.
ALT = "text"  Alternative text in lieu of the image.
HEIGHT ="n" Actual height to be displayed in n units.
ISMAP  Is an active map: coordinate of mouse click will be sent back to the server for CGI programming.
SRC = "URL"  URL of the image.
UNITS ="n"  Units for height and width in pixels.
WIDTH ="n"  Actual width to be displayed in n units.