Strong big and small tags in html
<Strong> tag is used to highlight the text in a paragraph mainly.
Here we can see the difference between both normal text and strong text
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><strong>This text is strong.</strong></p>
</body>
</html>
Here we can see the difference between both normal text and strong text
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><strong>This text is strong.</strong></p>
</body>
</html>
Output:
This text is normal.
This text is strong.
This text is strong.
Big:
This is used make the text Big and look good
<!DOCTYPE html>
<html>
<body>
<big>Small</big> Formatting
</body>
</html>
Output:
Small Formatting
Small:
This is used to make text smaller when compared to normal text.
<!DOCTYPE html>
<html>
<body>
<h2>HTML <small>Small</small> Formatting</h2>
</body>
</html>
Output:
Comments
Post a Comment