(PCC)::[How-to-make-Marked-deleted-and-inserted-using-del-and-ins-in-HTML]::[html]
<!DOCTYPE html> <html> <body> The del element represent deleted (removed) text. The ins element represent inserted (added) text. <p>My favorite color is <del>blue</del> <ins>red</ins>.</p> </body> </html>
My favorite color is blue red.