How to use internal CSS in html code?

All QuestionsCategory: HTMLHow to use internal CSS in html code?
Chetan Shidling Staff asked 5 years ago

I need short information.

1 Answers
Chetan Shidling Staff answered 5 years ago

<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: black;}
</style>
</head>
<body>
<h1>This is Chetan Shidling</h1>
<p>I am founder of this site</p>
</body>
</html>