CSS Is by Cascading-Style-sheets. It is a style sheet language which describe Colorful page and format, style font, Size of images , background color, border, margin & padding. It is make beautiful and amazing site. CSS is Also used with HTML.
<Html>
<head>
<style>
. body { background-color:red;
} /* here body color is red */
</Style>
</head>
<body>
<h1> Hello World</h1>
<p style=" Color:blue"> This blog specially CSS Reader and make Good site</p> <-- here CSS apply to paragraph & paragraph color is blue. -->
</Body>
</Html>
CSS selectors are used there you want apply style. CSS is (1) Element (2) ID (3) Class (4) Universal (5) Group.
HTML to insert CSS document's
1> Inline.
2> Internal
3> External.
Inline CSS apply to in body paragraph , heading and font-size etc.
<p style=" font-size:15p;"> this css in Inline </p>
Internal CSS apply in head side
<Html>
<head>
<style>
.body { background-color: black;} This is internal css
</Style>
</Head>
<body>
<h1> hi Good Morning
</H1>
</Body>
</Html>
> External CSS is apply other side or folder. That style sheets link with HTML main pages. Easily apply to css there.
CSS also Apply to heights, width, position, spaces and borders.
CSS is make responsible website all media.
CSS thousands color display on screen & make beautiful Look of media & website.