<strong> tag in HTML 5

In this articles i am going to explain about strong tag in HTML 5.
  • 1810

Definition

The HTML <Strong> tag is used for indicating strong importance for own code. The strong tag surrounds the emphasised word/phrase. <Strong> tags to indicate stronger importance. You can use CSS to make nested tags appear stronger.

Support browser in <Strong> tag.

Chrome,  Firefox,  Opera,  Internet Explorer 9  and  Safari.

Lets take an example of <Strong> tag

<html>
<body>
    <em>Emphasized text</em><br />
    <strong>Strong text</strong><br />
    <dfn>Definition term</dfn><br />
    <code>Computer code</code><br />
    <samp>
        Sample output from computer program</samp><br />
    <kbd>Keyboard input</kbd><br />
    <var>
        Variable</var><br />
</body>
</html>

 

Output


 Clipboard01.jpg

Further Readings

You may also read more about HTML5 here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.