Writing HTML | About | FAQ | Alumni | Kudos | References | Tags | Lessons |

Summary of HTML Tags Used in the Tutorial

<html>
<head>...</head>
<body>...</body>
</html>
HTML Structure
Basic structure for any HTML document
Lesson 1
<title>...</title>
Document Title
Goes inside the <head>...</head>
Lesson 1
<!-- blah -->
Comment
Notes and information in the body but not displayed in the browser
Lesson 1
<body bgcolor=#XXXXXX>
Solid Color Background
Color the background of the web page.
Lesson 16
<body background=
"filename.gif">
Texture File Background
Use a graphic image to repeatedly "tile" and fill the web browser page.
Lesson 16
<body 
TEXT=#XXXXXX
LINK=#YYYYYY 
VLINK=#00HH00>
Colored Text and Hyperlinks
Color all of the text or hypertext items to any color the reader desires.
Lesson 16
<META 
HTTP-EQUIV="REFRESH" 
CONTENT="X; 
URL=zzzzzzzz">
META Refresh
Causes browser to pause for X seconds before automaticxally jumping to the url or page specified by zzzzzzzz
Lesson 24
<META 
name="DESCRIPTION" 
CONTENT="blah blah">

<META 
name="KEYWORDS" 
CONTENT="zing, zang, 
zung">
META Descriptors
DESCRIPTION provides text for use in display for your site when displayed by some web searcgh engines. KEYWORDS indicates the primary keywords that might be used by people trying to find your pages via a web search.
Lesson 24
<FRAMESET
ROWS|COLS=X,Y,...Z 
frameborder="1|0"
border=N>

<FRAME
SRC="xxx.html
scrolling=
yes|no|auto>
NORESIZE

<NOFRAMES>
  :
  :
</NOFRAMES=N>

Frames
FRAMESET tags define a collection of rows or columns in a frame designed web page. Values for dimensions can be percentages (e.g. COLS="20%,30%,50%" or abolsute pixels. A value of "*" fills the remaning space. Frameborder turns the dividers on (1) or off (0); if the dividers are "on" then they have a width specified by the value of BORDER.

FRAME tags define content for a frame; SRC indicates URL for content. Value of scrolling determines whether scroll bars are displayed. If NORESIZE is included, the frames cannot be adjusted in size by the viewer.

Content in the NOFRAMES tags is displayed if the browser does not support frames.

Lesson 24

Writing HTML Summary of HTML Tags: Web Page Stucture
©1994-1999 Maricopa Center for Learning and Instruction (MCLI)
Maricopa Community Colleges

The 'net connection at MCLI is Alan Levine
Comments to alan.levine@domail.maricopa.edu

UURL: http://www.mcli.dist.maricopa.edu/tut/tags/tag1.html