CS Electrical And Electronics
@cselectricalandelectronics

How to use internal CSS in html code?

All QuestionsCategory: HTMLHow to use internal CSS in html code?
CS Electrical And Electronics Staff asked 4 years ago

I need short information.

1 Answers
CS Electrical And Electronics Staff answered 4 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>