Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In HTML, what is the opposite to <strong>?

Tags:

html

xhtml

tags

Does there exist an opposite tag to <strong> in HTML? Or will it be introduced in HTML5?

like image 490
Muleskinner Avatar asked Mar 28 '11 13:03

Muleskinner


People also ask

What does strong ></ strong mean in HTML?

Definition and Usage The <strong> tag is used to define text with strong importance. The content inside is typically displayed in bold. Tip: Use the <b> tag to specify bold text without any extra importance!

Is bold and strong same in HTML?

The text written under <b> tag makes the text bold presentationally to draw attention. The main difference between these two tag is that the strong tag semantically emphasizes on the important word or section of words while the bold tag is just offset text conventionally styled in bold.

What is difference b and strong in HTML?

The difference between the two tags is that the bold tag is intended to draw attention to the text, while the strong tag also highlights the text semantically and indicates that this is an important word or section of text.


1 Answers

To mark text as not emphasized or important, simply do not mark it up with the em or strong elements respectively.

Source: HTML 5: The small element

like image 175
wildcard Avatar answered Sep 22 '22 09:09

wildcard