class 10th CSS












                          CSS Notes

It is a style sheet language used for design presentation is written in a markup language 
Syntax:- A css  rule set consists of a sector and a declaration block
1. Inline styles:- an inline style are used to apply unique style for a single element tag
2.Internal style sheet:- it is used for single webpage. IT is given in a header section example <head>internal style are defined within <style> elements tag. 
3.External style Sheet:- IT is used to style entire website .it is created as a different document with CSS extension it is linked with web page using <link> tag. 


    <link REL="STYLESHEET" TYPE="text/css" HREF="[Style sheet URL]"> 
using multiple style sheet together
ID selector :used for specific element
 <H1 id="xyz">.............. </H1>then inside
<head><style>#xyz{color:green}</head></style>

Post a Comment

0 Comments