The
tag is nothing more than a container for other tags.
is a generic block-level element.
For example,
Restaurants
It is usually used with class.
The
For example,
Restaurants
It is usually used with class.
use
target = “_blank”
e.g.,
<a href=”http://weboom.wordpress.com/” target = “_blank”>Visit My Weboom Blog</a>
First, create
<a name=”here”>Your web content</a>
then, create a link for it
<a href=”#here”>Go to your web content</a>
a
is
an anchor tag.
<a href=”http://weboom.wordpress.com/”>Visit My Weboom Blog</a>
In an XML document, a CDATA section is a section of element content that is marked for the parser to interpret as only character data, not markup.
—-
<sender>John Smith</sender>
Here, the opening and closing “sender” tags are interpreted as markup.
However, if written like this:
<![CDATA[<sender>John Smith</sender>]]>
Everything are interpreted as character data (not makrup).

Do you want to make a comment in html?
In html, if you want to make a comment, then use
<!–
your comment which will not affect the code
–>