如何在HTML中添加粗体文本?

要显示粗体文本,请使用<strong>标记。HTML <strong>标记用于强调重要的文本。

示例

您可以尝试运行以下代码以在HTML中实现<strong>标记-

<!Doctype html>
<html>
   <head>
      <title>HTML strong Tag</title>
   </head>
   <body>
      <p>This is an <strong>important</strong> text</p>
   </body>
</html>