css - Internal Style

Internal CSS is a method of applying CSS (Cascading Style Sheets) directly within an HTML document to style a webpage. It is placed inside a

 Example:

<html>
<head>
<style>
body
{
background-color: lightblue;
}
h1
{ color: navy; text-align: center;
}
p { font-size: 16px;
}
</style>
</head>
<body> <h1>Welcome to My Website</h1> <p>This paragraph is styled with internal CSS.</p>
</body>
</html>