Delete Tag In Html
The delete Tag is used to
mark up text that has been deleted from a document. It is useful if you want
the original text to remain to provide a record of changes to the document over
time. Anything that appears within
<del>...</del> element, is displayed as deleted text.
This Tag Has
Two Attributes cite and determine :
- cite can be used to add a URL that further explains the reason
for the change.
- datetime can be used to specify the time when the change was made
Example:
Example <!DOCTYPE html> <html> <head> <title>Deleted Text
Example</title> </head> <body> <p>Welcome
<del>To</del> Launchpadlwd<ins>blog</ins></p> </body> </html>
|
d
0 Comments
Please do not enter any spam links in the comment box