How to mark deleted text and inserted text?

 Posted by Pgayath on 9/21/2012 | Category: HTML 5 Interview questions | Views: 2510 | Points: 40
Answer:

<ins> and <del> tags are used to mark the inserted and deleted text respectively.
The browsers will strikethrough deleted text and underline inserted text.

Example:
<html>

<body>
<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>
</body>
</html>


| Alert Moderator 

Comments or Responses

Login to post response