Strong tag in Html

Uses of <strong> tag

Used to separate the text from the rest of the content.
Browsers traditionally bold the text found within this tag.


Example:

<!DOCTYPE html>
<html>

<head>
<title>Strong tag</title>
</head>

<body>
Normal Text<br>
<strong>Strong Text</strong>
</body>

</html>

Output of this code will look like this: