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中包含缩写?的详细内容,更多请关注编程之家其它相关文章!