Continue
Inserted Text and Deleted Text
Anything that appears within <ins>...</ins> element is displayed as inserted text.
Anything that appears within <del>...</del> element, is displayed as deleted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Inserted Text Example</title>
</head>
<body> <p>I want to drink <del>cola</del> <ins>wine</ins></p>
</body>
</html>
This will produce the following result:
I want to drink eela wine
Comments
Post a Comment