Introduction to CSS
In this tutorial you will learn about the CSS Basics.
- CSS is a design specification language.
- CSS style provides look and feel to the HTML Elements.
- CSS Style is used to make the web page as more powerful and attractive.
- Using CSS you can change color, font-style, font-size background color and more. That’s why web page looks more appealing(attractive).
- CSS describes that how can an HTML Elements shown on the web browser.
Example – CSS Basics Example
<html>
<body>
<p style="color:red;">This is my paragraph.</p>
</body>
</html>
The above syntax shows that how can you change the color of the paragraph element. And this is also an example of the Inline Style.

February 23rd, 2019
Nilesh Chaurasia
Posted in
Tags:
