CSS (CASCADING STYLE SHEET)
CSS (CASCADING STYLE SHEET)
1.css is collection of attribute ( colour, height, width)
2.CSS can not used tag symbol<>
3.CSS only used tag name ( font, B, Center )
TYPES OF CSS:-
there are some types of CSS.
1.internal CSS:- Create inside HTML file.
2.external CSS.:- create outside HTML file.
3.Inline CSS.:- this CSS direct used with Tag.
DIFFERENT BETWEEN HTML ATTRIBUTE AND CSS ATTRIBUTE:-
1.HTML attribute is represting =
ex. height="100", width="100"
2.CSS attribute is representing :
ex. height:100, width:100
3.in CSS all numerical value is represent PX
ex. height:100PX , width:100PX
CSS REPRESENTETOR:-
CSS IS to be represented (style)
WHAT IS INLINE CSS:-
inline CSS is used inside HTML tags.
HTML>
<BODY>
<font style="color:red">welcome</font>
<BR>
<H1 style="color:red"> welcome </H1>
</BODY>
</HTML>
Comments
Post a Comment