HTML DEL (<del>) Tag
0 2633
HTML <del> tag is typically used for representing deleted/removed (a part of the text that was deleted) text from current document.
del tag is used to make strike-through texts and also specify texts that are going to be modified. The HTML <ins> tag is used for inserted text from current document.
<del> or <ins> tag always comes in pair. The <del> or <ins> tag is supported in all major browsers.
Browsers Support:
Google Chrome | Firefox | Safari | Internet Explorer |
Code:
<!DOCTYPE html> <html> <head> <title>Del tag</title> </head> <body> <h2> Example of Del Tag </h2> <p>We are <del> very </del> <ins> extremely </ins> happy that you visited this page.</p> </body> </html>
Output:
Share:
Comments
Waiting for your comments