Introduction to CSS
CSS stands for Cascading Style sheet. Used to describe the way how to provide Styles to the html element, It is Client-side scripting Language.
Style object is providing no. of properties. By using CSS, we can apply these properties to the html elements in diff. ways.
The properties of style object or color, Font, hyper, size, cursor etc.
Example
<html>
<body>
<p style= “color:red;font-style:bold”> Hello World!</p>
</body>
</html>