<element_name> -- that is,
they are simply the element name surrounded by left and right angle
brackets.
Most elements mark blocks of the document
for a particular purpose or formatting: the above
<element_name>
marks the beginning of such a section. The
end of this section is then marked by the
ending tag </element_name> -- note the
leading slash character "/" in front of the element name. End, or stop
tags are indicated by this leading slash character.
Example: the heading at the top of this page
is an H1 element, (a level 1 heading)
which is written as:
<H1> Elements in HTML </H1>.
<HR> element, which
draws a horizontal line across the page.
This element would simply be entered as
<HR>
<hr>, <Hr> or
<HR>. <A>,
which marks a region of text as the beginning (or end) of a
hypertext link. This element can have several attributes.
One of them, HREF, specifies the hypertext document to which
the marked piece of text is linked. To specify this in the tag for A you write
<A HREF="http://www.somewhere.com/file.html"> marked text </A>.