Introduction :-
Hii Friends..
Today I explain what is Css and why we use Css and the basic structure of css. so here I explain this one by one.
What is Css ?
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
Hii Friends..
Today I explain what is Css and why we use Css and the basic structure of css. so here I explain this one by one.
What is Css ?
- CSS stands for Cascading Style Sheets
- CSS describes how HTML elements are to be displayed on screen, paper, or in other media
- CSS saves a lot of work. It can control the layout of multiple Web pages all at once
- External Style Sheets are stored in CSS files
<--------------------- Example of css ------------------------->
<head>
<style>body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
<--------------------------------Output------------------------------>
0 comments:
Post a Comment