How to style HTML files using CSS???

Do you want to describe your html file and display it on the web page with some styles. If your answer is yes…. Just use CSS… What is CSS? CSS is expanded as Cascading Style sheets which allows the user to style your web pages. How to do it??? The user follows the syntax Selector { Property1: Value1; …………; Property n:Value n;} You can add the CSS code to style your web pages by three types. They are as follows · Inline CSS · Internal CSS · External CSS Now, each and every CSS type is explained with code. Inline CSS: This is the simple way of adding styles to your html document. There is an element called “Style” in paragraph and heading style tags. You can set the properties with some value for this method. Program: <!DOCTYPE html> <html> <body> <h2 style="color:red;"> This is the example of Inline...