Difference between revisions of "Tag (HTML)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→External links) |
Karl Jones (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | A '''tag''' represents an element in [[elements]] in [[HTML]] documents. | + | A '''tag''' represents an element in [[HTML element|elements]] in [[HTML]] documents. |
== One Tag, Two Tag == | == One Tag, Two Tag == | ||
Line 14: | Line 14: | ||
Elements with two tags serve as containers. Any content between the opening tag and the closing tag is contained by the container element. | Elements with two tags serve as containers. Any content between the opening tag and the closing tag is contained by the container element. | ||
− | |||
− | |||
== See also == | == See also == | ||
− | * HTML | + | * [[HTML]] |
+ | * [[HTML element]] |
Revision as of 07:08, 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.