1.

How You Define Span In Html?

Answer»

We use SPAN by using <SPAN> tag in HTML.Syntax:<SPAN>…………</SPAN>Used to highlightthe any COLOR text, for ADDING colored text, for adding BACKGROUND IMAGE to text. SPAN not a cause of line break. It delimits text and using them we can use style to the 'elemental' region without any break in Text.
Example:
<p>
<span style="color:#FF0000;">
In this PAGE we use span.
</span>
</p>

We use SPAN by using <SPAN> tag in HTML.Syntax:<SPAN>…………</SPAN>Used to highlightthe any color text, for adding colored text, for adding background image to text. SPAN not a cause of line break. It delimits text and using them we can use style to the 'elemental' region without any break in Text.
Example:
<p>
<span style="color:#FF0000;">
In this page we use span.
</span>
</p>



Discussion

No Comment Found