html 标签用于指示缩写。您可以尝试运行以下代码来了解如何在 html 中包含缩写 -
示例<!doctype html><html> <head> <title>html abbr tag</title> </head> <body> <p> <abbr title = "private">pvt.</abbr> <br /> <abbr title = "world health organization">who</abbr> promotes the global game. <br /> </p> </body></html>
以上就是如何在html中包含缩写?的详细内容。