Difference between revisions of "HTML element"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
m (Karl jones moved page Element to HTML element)
(First)
Line 1: Line 1:
An elements is a fundamental units in [[HTML]].  The HTML language is made up of a set of elements, and rules for using them.
+
An '''element''' is a fundamental units in [[HTML]].  The HTML language is made up of a set of elements, and rules for using them.
  
 
Elements are the basis for [[Tag|tags]]:
 
Elements are the basis for [[Tag|tags]]:
Line 12: Line 12:
 
* Most elements use two tags: an opening tag, and a closing tag
 
* Most elements use two tags: an opening tag, and a closing tag
 
** <p>Text inside paragraph.</p>
 
** <p>Text inside paragraph.</p>
 +
 +
== External links ==
 +
 +
* [[http://en.wikipedia.org/wiki/HTML_element HTML element]] @ Wikipedia

Revision as of 12:30, 24 May 2015

An element is a fundamental units in HTML. The HTML language is made up of a set of elements, and rules for using them.

Elements are the basis for tags:

A tag is how an element gets written down in an HTML document.

One Tag, Two Tag

  • Some elements one tag
    • <img src="image.jpg" alt="element with one tag" />
  • Most elements use two tags: an opening tag, and a closing tag
    • Text inside paragraph.

External links