programming-examples/html/_Basics/Marking deleted and inserted text.html
2019-11-15 12:59:38 +01:00

15 lines
387 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML deleted and inserted text</title>
</head>
<body>
<h1>To Do</h1>
<ul>
<li>Buy some cookies</li>
<li><ins>Do some cleaning</ins></li>
<li><del>Relaxation time</del></li>
<li><ins>Visit a doctor</ins></li>
</ul>
</body>
</html>