如何在HTML中创建粗体文字?没有CSS。
我希望BOLD这个词 BOLD
答案 0 :(得分:1)
<p>I want the word<strong>BOLD</strong> to be <strong>BOLD.</strong></p>
答案 1 :(得分:0)
有很多方法,其中之一是 HTML 解决方案。
</p>I want the word <b>BOLD</b> to be <b>BOLD</b><p>
请注意<b>
元素。
答案 2 :(得分:0)
首先,您的HTML代码中存在语法错误,应该是:
<p>I want the word BOLD to be BOLD</p>
然后,有两种方法可以在没有CSS的情况下使文本显示为粗体:
<p>I want the word <strong>BOLD</strong> to be <b>BOLD</b></p>
我建议使用强元素,因为它更具语义性。
查看以下链接,您将了解更多信息:
What's the difference between <b> and <strong>, <i> and <em>?