CSS Internal (or)
Embedded Styles: It is used for Reusability
in Local
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
---------------------------------------------------------------