<strong> HTML Tag

In this article we will discuss about how to use strong tag in HTML.
  • 1568

The <strong> tag in HTML is used to make the text strong emphasized. It makes the text more emphasized than the <em> tag in HTML.

HTML Code:

<html>

<head>

    <title></title>

</head>

<body>

    It is better to be <strong>violent</strong>,

    if there is violence in our <strong>hearts</strong>,<br>

    than to put on the <strong>cloak </strong>

    of nonviolence to cover <strong>impotence.</strong>

</body>

</html>

Output:

It is better to be violenthearts,
than to put on the cloak of nonviolence to cover impotence.

Ask Your Question 

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

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.