<strong>: The HTML Strong Element
1 Description
The HTML <strong>
element is used when you want to designate
text as serious, important, or urgent. The text inside of the <strong>
element will typically be rendered in a bold font by the web browser.
2 Examples
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<h1>Example HTML Page</h1>
<p>This is a sample html document which contains a <strong>strong</strong> element.</p>
</body>
</html>
This document was last updated: