<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd"
<HTML>
<HEAD>
<TITLE>
HTML, Tags and Nesting
</TITLE>
</HEAD>
<BODY>
|
|
<H1 ALIGN=Center>
</H1>
|
HTML, Tags and Nesting
|
<H2 ALIGN=Center>
</H2>
|
HTML
|
<P>
|
HTML stands for Hyper Text Mark-up Language.
|
</P>
|
|
<P>
|
HYPER - being the opposite of linear. Computer
programs once had to move in a linear manner. This
before this... this before this... and so on. This
language does not hold to that and allows the person
viewing the WWW page to go anywhere, anytime they
want.
|
</P>
|
|
<P>
|
TEXT - plain English text, such as this.
|
</P>
|
|
<P>
|
MARK-UP - Marking-up is the process of adding notation
to text to indicate how it should be displayed. The mark-up
notations in an html document are often called Tags.
|
</P>
|
|
<P>
|
LANGUAGE - because it is a language (of a sort!)
|
</P>
|
|
<HR>
|
|
<H2 ALIGN=Center>
</H2>
|
Tags or Mark-up Notations
|
<P>
|
These are the formatting codes used in HTML
documents. Tags indicate how parts of the document
will appear when viewed on a web browser. They are
usually used in pairs of Opening < > and Closing </>
tags. The required text, image or link is then
placed between the these sets of tags;
|
</P>
|
|
<P ALIGN=Center>
|
<P> Your text goes here </P>
|
</P>
|
|
<P>
|
(By the way the letter P in between the tags
indicates a Paragraph but that's another story.)
|
</P>
|
|
<H3 ALIGN=Center>
</H3>
|
The <HTML> Tag
|
<P>
|
These are the first and last tag on a Web page.
They tell the browser where the HTML starts and
finishes. They look like this - <HTML>
</HTML>
|
</P>
|
|
<HR>
|
|
<H2 ALIGN=Center>
</H2>
|
Nesting
|
<P>
|
The term nesting refers to placement of tag sets one
within another e.g. <P> <B> <I>. It is
important that when the closing tags are placed they
are written in the reverse order. </I> </B>
</P>.
|
</P>
|
|
<HR>
|
|
<P ALIGN=Center>
<A HREF="contents.htm">
</A>
</P>
|
Contents
|
</BODY>
</HTML>
|
|