Difference between revisions of "HTML element"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→See also) |
Karl Jones (Talk | contribs) (→External links) |
||
Line 32: | Line 32: | ||
* [http://en.wikipedia.org/wiki/HTML_element HTML element] @ Wikipedia | * [http://en.wikipedia.org/wiki/HTML_element HTML element] @ Wikipedia | ||
+ | [[Category:HTML]] | ||
[[Category:HTML elements]] | [[Category:HTML elements]] | ||
[[Category:Markup languages]] | [[Category:Markup languages]] | ||
[[Category:Web design and development]] | [[Category:Web design and development]] |
Revision as of 14:01, 24 April 2016
An element is a fundamental unit in HTML.
The HTML language is made up of a set of elements, and rules for using element.
Elements are the basis for tags.
In an HTML document, tags represent elements.
One Tag, Two Tag
Some HTML elements require one tag:
<img src="image.jpg" alt="element with one tag" />
Most HTML elements require two tags: an opening tag, and a closing tag:
<p>Text inside paragraph.</p>
See also
External links
- HTML element @ Wikipedia