HTML

Inserted Text


Inserted text in HTML is used to indicate content that has been added to a document. It is typically rendered with an underline .

 

Using the <ins> Tag

The <ins> tag is used to mark up text that has been inserted into a document.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Inserted Text Example</title>
</head>
<body>
    <p>This is some <ins>inserted text</ins>.</p>
    <p>Another example: <ins>Added content here</ins>.</p>
</body>
</html>