Tutorials

KodeKite Tools

HTML
Flexbox
SVG
Canvas
HTML Tutorial

More


HTML Inserted Element
Ins Element

Insert is a formatting element used to insert or add text in document. Inserted text is different from other text and is underlined

Syntax

<ins>Content</ins>

Or

<tag><ins>Content</ins></tag>


You can apply insert element to any element and use any where within a HTML document.


Example

I am Inserted Text


Insert is a pair tag and output of insert element is horizontal line below text like you can see in above example and is different from other text.


Practice Task

Open notepad or any other text editor, follow the following points.


  • Create one paragraph
  • Assign text I am to paragraph
  • Now insert text Paragraph in last of paragraph

save file with name task.html or task.htm and then open it using any browser and see results.


Solution

I am Paragraph


Don't forget inserted is non empty element which means it always comes in pair.