PHP前端开发

如何在HTML中包含缩写?

百变鹏仔 3个月前 (09-22) #HTML
文章标签 缩写

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>