Home Page | Table of Contents | Previous Page | Next Page

Basic World Wide Web Concepts


HTML

HTML stands for Hypertext Markup Language. It is the primary format for the World Wide Web materials. HTML is a Document Type Definition (DTD) of Standard Generalized Markup Language (SGML).

Pages

The basic HTML document is called a "page." HTML pages are composites, often built from several files of different types (text, graphics, sounds, etc.). Pages are strung together using hypertext links.

HTTP

HTTP stands for Hypertext Transport Protocol. It allows WWW clients to request and receive content from WWW servers. HTTP is optimized to make the best use of limited network and server capacity.

URLs

URL stands for Uniform Resource Locator. A URL may refer to any linkable entity, not just HTML pages (the "mailto:" URL for example). URLs are made up of four parts as follows:

Anatomy of a Uniform Resource Locator
http://www.med.ufl.edu/medinfo/index.html
partfunction required? 
http://the protocol or "scheme"yes
www.med.ufl.edu/the host computeryes
medinfo/the directoryno
index.htmlthe fileno

Absolute vs Relative URLs

URLs may be absolute or relative. An absolute URL such as "http://www.ufl.edu/" specifies all information necessary for the link. A relative URL such as "index.html" is often just a file name. The rest of the information must be filled in based on the context of the document (the current directory).

Anchors

In HTML, the term "anchor" describes both the source and destination for hypertext links. For the purpose of discussion we will use the following terminology:

Other Terms


 Created: September 25, 1996  Modified: October 25, 1996
 Version: Copyright 1996 by the University of Florida
  Author: Richard Rathe, MD / rrathe@dean.med.ufl.edu
Location: http://www.med.ufl.edu/medinfo/amia96/concepts.html

Home Page | Table of Contents | Previous Page | Next Page