INTERNAL STYLE SHEET
2. Internal Style Sheet
An internal style sheet may be used if one single page has a
unique style. Internal styles are defined within the
<STYLE> element, inside the <HEAD> section of an
HTML page.
e.g
HTML code save as CSS_Example_05.html.
<HTML>
<HEAD>
<STYLE type = "text/css">
HR
{color : white ;}
H1
{font-size = 40;}
P
{margin-left:20px;}
BODY
{background-image : url ("E :/Projects/COPA
/Web Design Concepts/colorful.jpg")}
</STYLE>
<TITLE>Arihant BOOKS</TITLE>
</HEAD>
<BODY>
<H1>Arihant Books </H1>
<H1>Arihant Books </H1>
<P> A wide range of books for school curricula,
polytechnic, competitive and recruitment
examinations are published by <B> Arihant
Publications India Ltd. </B> </P>
<HR style = "color: black"> For any query
e-mail at info@arihantbooks.com and
crm@arihantbooks.com or dial +91-11-40546380
</BODY>
</HTML>
Comments
Post a Comment