programming-examples/html/Basics/Marking deleted and inserted text.html

15 lines
387 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!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>