Difference between revisions of "Tag (HTML)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
Line 20: Line 20:
  
 
* HTML
 
* HTML
 
== External links ==
 
 
(TO DO:  links.)
 

Revision as of 08:06, 4 February 2016

A tag represents an element in elements in HTML documents.

One Tag, Two Tag

Some elements have one tag:

<img src="image.jpg" alt="element with one tag" />

Most elements use two tags: an opening tag, and a closing tag:

<p>Text inside paragraph.</p>

Elements with two tags serve as containers. Any content between the opening tag and the closing tag is contained by the container element.

(TO DO: more info, cross-ref.)

See also

  • HTML