在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>