HTML STRONG <strong> Tag
0 3082
HTML STRONG <strong> tag is a phrase tag we can use to represent the important text of a document on the browser.
The text within <strong> text renders in bold font on the browser by default but if you want to change, it can be changed using CSS. It work like <b> tag. <b> tag only bold text but <strong> tag used for important text.
Syntax:
<strong> Write your important content.. </strong>
Program:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Strong Tag</title>
</head>
<body>
<h1>Example of Strong Tag</h1>
<p> Hello,
<strong>It is Important Part of Documents.</strong>
</p>
</body>
</html>Output:

Share:



Comments
Waiting for your comments