Introduction:In this section, you will see the use <span> tag. The <span> tag supports in both HTML5 and HTLM4.01
Introduction:In this section, you will see the use <span> tag. The <span> tag supports in both HTML5 and HTLM4.01In this section, you will see the use
<span> tag. The <span> tag supports in both HTML5 and
HTLM4.01. It is used for grouping inline elements. It is
nothing without global attributes.
OR
The <span> tag is use for
specifying a section in a document.
<span>............</span> |
<!doctype html > <html> <head><title>Title of document</title></head> <body> <h2>Example of span tag in HTML5.</h2> This site contains many quality <span style="color:#CC99FF">Java,<br> JSP Tutorials, Hibernate Tutorials, Struts Tutorials,<br> JSF Tutorials, RMI, MySQL Tutorials, Spring Tutorials,<br> source codes</span> 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.