-4

How do I make text bold in HTML? No CSS.

I want the word BOLD to be BOLD

Amit Joki
  • 56,285
  • 7
  • 72
  • 91
  • https://developer.mozilla.org/en-US/docs/Web/HTML – IntelliJ Amiya Jun 29 '14 at 06:04
  • OP, look, I've bolded the word bold. Just right click on it and then inspect the element and you'll know how to do it. – Amit Joki Jun 29 '14 at 06:07
  • 1
    This question creates a very `` impression that you have not studied the topic at all. This site is for substantive programming questions, not trivial questions that can be solved with two minutes of googling. – Tom Zych Jun 29 '14 at 06:09

3 Answers3

1
<p>I want the word<strong>BOLD</strong> to be <strong>BOLD.</strong></p>
IntelliJ Amiya
  • 73,189
  • 14
  • 161
  • 193
0

There are many methods, one of them is HTML solution.

</p>I want the word <b>BOLD</b> to be <b>BOLD</b><p>

Note the <b> element.

Afzaal Ahmad Zeeshan
  • 15,234
  • 11
  • 53
  • 100
0

First your have a syntax error in your HTML code, it should be:

<p>I want the word BOLD to be BOLD</p>

Then, there are two methods can make text display bold without CSS :

<p>I want the word <strong>BOLD</strong> to be <b>BOLD</b></p>

I recommend use strong element, because it's more semantic.

Look at the follow link, you will learn more:

What's the difference between <b> and <strong>, <i> and <em>?

Community
  • 1
  • 1
Harry Yu
  • 183
  • 1
  • 2
  • 11