Dec 032009
The
tag is nothing more than a container for other tags.
is a generic block-level element.
For example,
Restaurants
Category
Chinese
Japanese
Mexican
Italian
French
Area
Carmel Valley
La Jolla
Chula Vista
Sorrento Valley
Downtown
It is usually used with class.
Posted by weboom at 11:48 pm
Tagged with: div
Jul 012009
use
target = “_blank”
e.g.,
<a href=”http://weboom.wordpress.com/” target = “_blank”>Visit My Weboom Blog</a>
Posted by weboom at 12:02 am
Tagged with: a tag, href, new window, target, _blank
Jul 012009
First, create
<a name=”here”>Your web content</a>
then, create a link for it
<a href=”#here”>Go to your web content</a>
Posted by weboom at 12:01 am
Tagged with: a, a tag, href, html, jump, name
Jun 302009
a
is
an anchor tag.
<a href=”http://weboom.wordpress.com/”>Visit My Weboom Blog</a>
Posted by weboom at 11:56 pm
Tagged with: a, a tag, href
Jun 282009
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).
Posted by weboom at 4:35 pm
Tagged with: cdata
Jun 282009
In html, if you want to make a comment, then use
<!–
your comment which will not affect the code
–>
Posted by weboom at 4:30 pm
Tagged with: comment