Home  >  Article  >  Web Front-end  >  How to mark inserted text in HTML?

How to mark inserted text in HTML?

WBOY
WBOYforward
2023-08-26 09:21:261214browse

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 text

We 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.

grammar

The following is the syntax of the tag.

<ins>The text to be inserted</ins>
The Chinese translation of

Example

is:

Example

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>

Text inserted via inline CSS tag

Use CSS properties to underline text. This attribute is used within

tags.

grammar

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

Example

is:

Example

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

Example

is:

Example

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete