In this tutorial, you will see the use of <small> tag.
In this tutorial, you will see the use of <small> tag.The <small> tag is available in HTML5. It is
used for minimizing size of text or for highlighting the text. It is also
used for side comment.
<small>............</small> |
<!doctype html > <html> <head><title>Title of document</title></head> <body> <h2>Example of <small> tag in HTML5.</h2> This site contains many quality <small>Java,<br> JSP Tutorials, Hibernate Tutorials, Struts Tutorials,<br> JSF Tutorials, RMI, MySQL Tutorials, Spring Tutorials,<br> source codes</small> 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> |
None.