CSS Basics Notes for Beginners
What is CSS?
CSS ka full form hai:
Cascading Style Sheets
CSS webpages ko design aur style dene ke liye use hoti hai.
Why Use CSS?
CSS use hoti hai:
● Colors add karne ke liye
● Fonts change karne ke liye
● Layout improve karne ke liye
● Website beautiful banane ke liye
Basic CSS Syntax
selector {
property: value;
}
Example
h1 {
color: blue;
}
Ye heading ka color blue karega.
, Adding CSS to HTML
Internal CSS
<style>
h1 {
color: red;
}
</style>
Text Color
p{
color: green;
}
Background Color
body {
background-color: lightblue;
}
Font Size
h1 {
font-size: 40px;
}
Text Alignment
h1 {
text-align: center;
What is CSS?
CSS ka full form hai:
Cascading Style Sheets
CSS webpages ko design aur style dene ke liye use hoti hai.
Why Use CSS?
CSS use hoti hai:
● Colors add karne ke liye
● Fonts change karne ke liye
● Layout improve karne ke liye
● Website beautiful banane ke liye
Basic CSS Syntax
selector {
property: value;
}
Example
h1 {
color: blue;
}
Ye heading ka color blue karega.
, Adding CSS to HTML
Internal CSS
<style>
h1 {
color: red;
}
</style>
Text Color
p{
color: green;
}
Background Color
body {
background-color: lightblue;
}
Font Size
h1 {
font-size: 40px;
}
Text Alignment
h1 {
text-align: center;