The <del> tag used to deleted from document.
For example:-
<!DOCTYPE html>
<html>
<head>
<title>Del Tag</title>
</head>
<body>
<h3>The del element</h3>
<p>Raj is a <del>good</del> person.</p>
</body>
</html>
Output
The del element
Raj is a good person.
Copyright ©2022 coderraj.com. All Rights Reserved.