Introduction to CSS

Introduction to CSS.

-> CSS stands for Cascading Style Sheet.
->CSS is the language we use to style an HTML document.
->CSS is used to design HTML tags.
->CSS is a widely used language on the web.
-> HTML, CSS and JavaScript are used for web designing. It helps the web designers to apply style on HTML tags.

-> CSS describes how HTML elements are to be displayed on screen, paper, or in other media

-> CSS control the layout of multiple web pages all at once

-> External stylesheets are stored in CSS files

Example :- 

<html>
<head>
<title>CSS</title>
<style>
body
{
background-color: blue;
}
p
{
color:yellow;
text-algin:center;
}
h1
{
color:red;
font-family:verdana;
font-size:30px

}
</style>
</head>
<body>
<p>Hello and Welcome to the world of CSS.</p>
<h1>CSS Stand for Cascading Style Sheet.</h1>
</body>
</html>

Output :- 

Try it by Yourself 

Fun & Easy to follow
Works on all devices
Your own Pace
Super Affordable