Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-make-Marked-deleted-using-the-del-element-in-HTML]::[html]

File Name : index.html

<!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>

Output :

The del element represents deleted (removed) text.

My favorite color is blue red.