हेलो दोस्तो इस आर्टिकल में हम वेब पेज का background color, heading  color,  paragraph color को change करना और front family , front size, text align का उपयोग  सीखेंगे। इसके लिए हम Html में <style> tag का प्रयोग करते हैं। 
जैसे -

Input Html Code :- 




<!DOCTYPE html>
<HTML>
<head><title> This is title of the page
</title></head>
<body style="background-color:brown">
<h1 style="color: blue">
This is heading of the page </h1>
<p style="color: yellow">
This is paragraph of the page </p>
<h1 style="font-family: courier">
this is courier font. </h1>
<p style="font-family:pt Serif">
This is pt serif. </p>
<p style="font size:200%">
font size 200 % </p>
<p style="font size:120%">
font size 120 % </p>
<h1 style ="text align: center">
This heading is centered </h1>
<p> this is paragraph of the page </p>
</body>
</HTML>

Output web view :-