HTML5 strong element, Example of <strong> tag in HTML5


 

HTML5 strong element, Example of <strong> tag in HTML5

In this tutorial, you will see the implementation of <strong> tag.

In this tutorial, you will see the implementation of <strong> tag.

HTML5 strong element, Example of <strong> tag in HTML5

Introduction:

In this tutorial, we will introduce you to about the <strong>. It is used for showing important text in article or within document. But it is used in HTML4.01 for emphasizing text.
OR
The <strong> tag is used for highlighting text.

Declaration Syntax :

Declaration syntax of <strong> in HTML5.

                           <strong>............</strong>

Example of <strong> in HTML5:

Code:
Strong_Tag.html
<!doctype html >
<html>
<head><title>Title of document</title></head>
<body>
<h2>Implementation of &lt;strong&gt; tag in HTML5.</h2>
This site contains many quality <strong>Java,<br>
JSP Tutorials, Hibernate Tutorials, Struts Tutorials,<br>
JSF Tutorials, RMI, MySQL Tutorials, Spring Tutorials,<br>
source codes</strong> and links to other java resources. We have<br>
large number of links to the tutorials on java which <br>
will help you learn java in better way. You will find <br>
these links very useful.
</body>
</html>
Output:

Download this code

Difference Between HTML5 and HTML4.01:

In HTML5 - for important text . But in HTML4.01-for  emphasizing text.

Ads