Home >Web Front-end >HTML Tutorial >What is the use of HTML tag?
HTML Tag
#All major browsers support the tag.
Note: No major browser can correctly display the cite or datetime attributes of the tag.
definition and usage (Recommended learning: html tutorial )
# & lt; ins & gt; label definition definition of the text that has been inserted into the document.Tips
Tips: Please use it with to describe updates and corrections in the document.
Example
Text with deleted part and newly inserted part:<html> <body> <p>一打有 <del>二十</del> <ins>十二</ins> 件。</p> <p>大多数浏览器会改写为删除文本和下划线文本。</p> <p>一些老式的浏览器会把删除文本和下划线文本显示为普通文本。</p> </body> </html>
Rendering:
The above is the detailed content of What is the use of HTML tag?. For more information, please follow other related articles on the PHP Chinese website!