Home > Article > Web Front-end > How to mark inserted text in HTML?
The content to be inserted is underlined. Underlined text is used to help attract attention.
We use the tag to mark up text in HTML. It represents text in web content that is styled differently than other textWe can also use the style attribute to mark text in HTML. The style attribute specifies the inline style of the element. This property is used inside the HTML
tag together with the CSS property text-decoration property.
The following is the syntax of the tag.
<ins>The text to be inserted</ins>The Chinese translation of
The following is a sample program for tagging inserted text in HTML.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for</p><ins>Delhi Land and Finance</ins> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
Use CSS properties to underline text. This attribute is used within
tags.
The following is the syntax for inserting text using CSS attribute tags.
<p style="text decoration:underline;">The content to be underlined</p>The Chinese translation of
The following is a sample program for inserting text using CSS attribute tags.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for</p><p style="text-decoration:underline;">Delhi Land and Finance. </p> <p> Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>The Chinese translation of
We can use tags inside HTML elements. The following is a sample program for tagging inserted and deleted text in HTML.
<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for Delhi Land and Finance.</p> <p>Company has changed its name from </p><del>DLF Universal Ltd</del> to<ins>DLF Ltd.</ins> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>
The above is the detailed content of How to mark inserted text in HTML?. For more information, please follow other related articles on the PHP Chinese website!