TAGS Mid Tags are
Program
- Delete : The <del> : used to do overline on Text.
- Insert : Used to show that text is underline.
- Sub : Used to tell the square of something.
- Sup : Used in Math.
- Mark : To highlight the things.
- Small : To make text small.
INPUT
<html> <head> <body> // Delete and Insert <del>Text</del><br> <ins>Text</ins><br>
// sub and sup 4<sub>2</sub><br> 4<sup>2</sup><br>
// mark and small <mark>This is important </mark> <small>This is small text </small> </body> </html>OUTPUT
![]()