Tuesday, May 19, 2009

Menu Tag and del tag.


Definition and Usage of Menu.


The <menu> tag is used to create a list of menu choices.

Examples.


<html>
<body>
<menu>
<li>html</li>
<li>xhtml</li>
<li>css</li>
</menu>
</body>
</html>


<html>
<body>
<menu>
<li><a href="http:\\www.htmlcodings.blogspot.com">html</li>
<li><a href="http:\\www.htmlcodings.blogspot.com">xhtml</li>
<li><a href="http:\\www.htmlcodings.blogspot.com">css</li>
</menu>
</body>
<&/html>

Definition and Usage of del.


The <del> tag defines text that has been deleted from a document.

Example.


<html>
<body>
<p>
My favorite color is
<del>blue</del>
<ins>red</ins>!
</p>
</body>
</html>

Output of del tag.


My favorite color is blue red!

No response to “Menu Tag and del tag.”

Post a Comment