Thursday, 8 August 2013

HTML del Tag

Introduction:

The HTML del tag is used for markup of deleted text.Markup of deleted text can be useful in determining differences between multiple versions of the same document. Browsers will normally strike a line through deleted text and underline inserted text.

Example:
<html>
<head>
<title>HTML del Tag</title>
</head>
<body>
<p>I am <del>very</del> <ins>extremely</ins> happy that you visited this page.</p>

</body>
</html>

No comments:

Post a Comment