| 
 HTML - StrikethroughTo place text onto your site that appears to be crossed out, we use the <del> tag. HTML Code:
<p>This text is <del>scratched</del> out!</p>
Strikethrough:
This text is scratchedout! HTML - Check Off TasksHere's an example of a web developer checking off tasks as they are performed. HTML Code:
<ol>
<li>Clean my room</li>
<li><del>Cook Dinner</del></li>
<li><del>Wash Dishes</del></li>
</ol>
To Do List:
Clean my roomCook DinnerWash Dishes 
		
 
 
 Tips
Place the del tags inside your links or anchor tags for a unique look. 
 
 Found Something Wrong in this Lesson?Report a Bug or Comment on This Lesson - Your input is what keeps Tizag improving with time! |