It is a style sheet language used for design presentation is written in a markup language
<link REL="STYLESHEET" TYPE="text/css" HREF="[Style sheet URL]">
Syntax:- A css rule set consists of a sector and a declaration block

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>
0 Comments