The ins tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The ins tag defines an underlined text.
So when should you use the ins tag?
When new text contents are inserted, you should put them in the ins tag to notify the browser.
Browsers will normally notice a line containing underlined (del tag) or underlined (ins) text.
Use a combination of ins and del tags to describe updated and revised text within the page.
Using
Example : In this example, I will use a combination of ins and del tags to describe the change in my programming language usage.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h2>Thẻ ins Trong HTML</h2> <div> <p> Tôi đang sử dụng ngôn ngữ lập trình <del>HTML</del> <ins>PHP</ins> để viết trang wed của mình. </p> </div> </body> </html>