HTML strong tag
Example
Define important text in a document:
<strong>This text is important!</strong>
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!
Browser Support
| Element | |||||
|---|---|---|---|---|---|
| <strong> | Yes | Yes | Yes | Yes | Yes | 
Global Attributes
The <strong> tag also supports the Global Attributes in HTML.
Event Attributes
The <strong> tag also supports the Event Attributes in HTML.
Default CSS Settings
Most browsers will display the <strong> element with the following default values:
Example
strong {
font-weight: bold;
}
font-weight: bold;
}
 
 
 
 
 
Comments
Post a Comment