Demo of Managing Fonts with internal Style




Normat text from here, you care read more on HTML at plus2net.com

This part of the text is within the <P> tag. To this tag we have applied all our internal styles

. This is out side the <P> tag so Normal text again. Check the source code below.


HTML

Normat text from here, you care read more on HTML at plus2net.com <p>This part of the text is within the <P> tag. To this tag we have applied all our internal styles</p>. This is out side the <P> tag so Normal text again. Check the source code below. 

Style

<style>
P { font-family: 'New Century Schoolbook', Times, serif ;
 font-style: oblique;
 font-weight: 800 ;
 font-size: 48px ;
 font-variant: small-caps;
}
</style>
<html>
<head>
<title></title>
<style>
P { font-family: 'New Century Schoolbook', Times, serif ;
 font-style: oblique;
 font-weight: 800 ;
 font-size: 48px ;
 font-variant: small-caps;
}
</style></head>
<body>

Normat text from here, you care read more on HTML at plus2net.com <p>This part of the text is within the <P> tag. To this tag we have applied all our internal styles</p>. This is out side the <P> tag so Normal text again. Check the source code below. 

</body>
</html>