Introduction
The ‘<del>
‘ element in HTML is used to represent deleted or removed text within a document. It is often used to show that a part of the text has been removed or deleted compared to a previous version.
Here is an example :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>Now the price of MSI Cyborg 15 is 59.999 instead of <del>89.999.</del> .</p>
</body>
</html>
Output :
The text which is written under the ‘<del>‘ tag it will visible look like visible in upper example.