181k views
1 vote
How do you make something bold in html

User Soon
by
7.4k points

1 Answer

3 votes

Final answer:

To make text bold in HTML, use the 'strong' tag or the 'b' tag (not recommended).

Step-by-step explanation:

To make text bold in HTML, you can use the 'strong' tag. Here's an example:

This text will be bold.

You can also use the 'b' tag, but it is not recommended as it doesn't carry the same semantic meaning as the 'strong' tag. Here's an example:

This text will be bold.

To make text bold in HTML, use the 'strong' tag or the 'b' tag (not recommended).

In this example, the text inside the <strong> and <b> tags will be displayed in a bold font.

Note that while both tags are commonly used for bold text, the <strong> tag is typically preferred when the intention is to convey strong importance or emphasis, rather than just visual styling.

However, in terms of appearance, there is usually no difference between using <strong> or <b> for making text bold.

User Stefan Avey
by
7.2k points