Junior JavaScript

What is the difference between <b> and <strong>?

  • <b> only makes text bold visually.
  • <strong> adds semantic meaning (important text).

Example:

<b>Warning:</b> Incorrect password.<br>

<strong>Warning:</strong> Incorrect password.

Key Takeaway:

Use <strong> for emphasis that affects meaning.

More from JavaScript Tutorial

All questions for this course