Basic Markup Tags in HTML

HTML tags are used to mark the elements of a file ie. fonts,paragraphs, text styles etc.

The HTML tags start with a left angle(<) and end with a back slash and right angle(/<)

Html tells the browser the file contains HTML coded information

Html has 6 HEADER TAGS

HTML has a pre tag which allows a fixed format

HTML has many text styles

HTML has many useful Layout tags

HTML allows many Special Characters

HTML Hypertext Links



THE HTML HEADERS

An example of the  < pre >  tag 
This is how a pre tag works.
You use a pretag when you want to control the
appearence  of your table
or document. The pre tag also allows
you to control spaces and other characters.

Text Styles in an unordered list format

Layout tags

< P >< /p > - paragraph

< br >< /br >- line break

< blockquote >< /blockquote > - blockquote

< hr > horizontal line


Special Characters
Character symbol Symbol Code
ampersand & & #38;
Asterisk * & #42;
At Sign @ & #64;
Greater than > & #gt;
Less than sign < & #lt;
Bullet & #149:
Copyright © & #169;
Trademark & #153;

Hypertext Links

Items you select , usually by clicking a mouse, to instantly view another topic or document, often called the destination link

Anchor

Tag used to establish your links

    Creating Anchors

  1. Locate the text you want to anchor (destination link)
  2. Before the text or graphic place the tag < a name="anchor_name" where anchor_name is the name you choose to anchor
  3. After the text or graphic place a closing tag < /a> to turn off the anchor

    Linking to text within a document

  1. Mark the destination text with an anchor
  2. Locate the text or graphic you want to designate as the link
  3. Before the text or graphic place the tag < a href="anchor_name" where anchor_name of the anchor
  4. After the text or graphic place a closing tag < /a> after the text or graphic you designated as the link

return to Frank Camarda home page