HTML Deleted Formatting Explain
The HTML <del> element defines deleted (removed) text.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>The del element represents deleted (removed) text.</p>
<p>My favorite color is <del>blue</del> red.</p>
</body>
</html>
Post a Comment