In this tutorial, you will see the implementation of <strong> tag.
In this tutorial, you will see the implementation of <strong> tag.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.
<strong>............</strong> |
<!doctype html > <html> <head><title>Title of document</title></head> <body> <h2>Implementation of <strong> 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> |
In HTML5 - for important text . But in HTML4.01-for emphasizing text.