Monday, 19 January 2015

What is Inline Style Sheet?


Click here to watch Video now!!!

Inline Style Sheet is the most basic style sheets used, which can be applied to individual elements in the web page. Inline styles are implemented by using style attribute with HTML tags. Inline styles are used when you just need to format just a single section in a web page.
For example:

<HTML>
<HEAD>
<TITLE>Inline Style Sheet</TITLE>
</HEAD>
<BODY>
<P >This is simple paragraph.</P>
<P style="color:Blue">This is paragraph with inline style.</P>
</BODY>
</HTML>



No comments:

Post a Comment