Example of HTML deleted and inserted text - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML deleted and inserted text

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML deleted and inserted text</title> 
 </head> <!--  w  w w  .j  av a2 s  .  c  om-->
 <body> 
  <h1>To Do List</h1> 
  <ul> 
   <li>Java</li> 
   <li><ins>XML</ins></li> 
   <li><del>Relaxation time</del></li> 
   <li><ins>SQL</ins></li> 
  </ul>   
 </body>
</html>

Related Tutorials