<!doctype html>
<html>
 <head>
  <meta charset="utf-8">
  <title>The Idea of Hypertext</title>
 </head>
  <body bgcolor="aqua">
  <h1 align="center">Hypertext</h1>
  <p>
   <b>HTML</b> stands for HyperText Markup Language.  Hypertext expresses the idea
   that you can click on what you are reading to jump to something else
   which is related.  This is the same <i>hyper</i> in hyperspace 
   that the characters in your favorite
   science-fiction story are always jumping through.  The idea is to
   go immediately to a distant place.  In the case of documents,
   you are going to
   a place which may be far away in whatever scheme is normally used
   to
   order the documents.
  </p>
 
  <P>
   HTML is a way of expressing hypertext, but the idea
   is older.  The first mention 
   is probably
   Vannevar Bush's description of Memex
   in 1945.  The term was coined by Ted Nelson in 1965, and was
   popularly embodied in the HyperCard application shipped with the
   original Apple Macintosh (from 
   <a href="http://www.fact-index.com/h/hy/hypertext.html">Fact-Index.com</a>).
  </p>
  <p>
   Links in HTML can be absolute, as is the one above, or this one about
   <a href="http://ei.cs.vt.edu/~history/VonNeumann.html">John Von Neumann</a>.
   Links can be relative, such as to
   <a href="attrib.htm">the previous demo page</a> which is in the same
   directory (folder).  You can also make relative links
   to lower directories starting from where you are
   <a href="down/up.htm">like this</a>.  You can also use the
   <tt>..</tt> convention to make a relative link up, such as
   <a href="../ch4.html">this one</a> which goes back to 
   Chapter 4.
  </p>
 </body>
</HTML>