In Association with Amazon.in   Flipkart

Thursday, May 23, 2013

CSS Internal Or Embedded Styles Examples

CSS Internal (or) Embedded Styles: It is used for Reusability in Local

In this styles are defined in the head section in the <style> tag.


Example:

<html>
<head>
   <style>
          p{
            color:green;
            font-size:40;
            font-weight:bold;
            }
   </style>
</head>

<body>
   <p> Welcome to CSS </p>
   <i> Internal (or)  Embedded  </i>
   <p> Welcome to Paragraph </p>
</body>
</html>

o/p:---------------------------------------------------------

Welcome to CSS

Internal (or) Embedded

Welcome to Paragraph
---------------------------------------------------------------


Related Posts Plugin for WordPress, Blogger...