Why use <strong> ?
When we need to write some word to show that the size will be bigger and bold than other words inside a paragraph tag or other tags. Then used <strong> . How to use it <strong> Text which we want to make size
bigger and bold </strong>
Syntax:
<p>
Hay <strong> Text which we want to
make size bigger and bold</strong>.
Are you in here????. did you saw that??
</p>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay <strong> Text which we want to
make size bigger and bold</strong>.
Are you in here????. did you saw that??
</p>
</body>
</html>
Output:
Post a Comment