HTML CSS examples for HTML:Text Format
Example of HTML deleted and inserted text
<!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>