Difference between revisions of "Tag (markup language)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(remove li)
(moved to Tag.)
Line 1: Line 1:
Tags representing [[elements]] in [[HTML]] documents.
+
TO DO reroute this page
 
+
== One Tag, Two Tag ==
+
 
+
Some elements have one tag:
+
 
+
<pre><img src="image.jpg" alt="element with one tag" /></pre>
+
 
+
Most elements use two tags: an opening tag, and a closing tag: 
+
 
+
<pre>
+
<p>Text inside paragraph.</p>
+
</pre>
+
 
+
Elements with two tags serve as containers.  Any content between the opening tag and the closing tag is contained by the container element.
+

Revision as of 09:00, 8 May 2015

TO DO reroute this page