You are on page 1of 3

CSS

CSS is the language for describing the presentation of Web pages, including
colors, layout, and fonts.css provide attractive web pags

CSS is independent of HTML and can be used with any XML-based markup
language.
The separation of HTML from CSS makes it easier to maintain sites, share
style sheets across pages,

 CSS describes how HTML elements are to be displayed on screen,


paper, or in other media
 CSS saves a lot of work. It can control the layout of multiple web pages
all at once

Advantages of CSS
 CSS saves time − You can write CSS once and then reuse same sheet in
multiple HTML pages.
 Pages load faster − If you are using CSS, you do not need to write HTML tag
attributes every time. Just write one CSS rule of a tag and apply it to all the
occurrences of that tag. So less code means faster download times.
 Easy maintenance − To make a global change, simply change the style, and all
elements in all the web pages will be updated automatically.
 Superior styles to HTML CSS can give a far better look to your HTML page in
comparison to HTML attributes.
 Multiple Device Compatibility − Style sheets allow content to be optimized for
more than one type of device. By using the same HTML document, different
versions of a website can be presented for handheld devices such as PDAs and
cell phones or for printing.
 Global web standards − Now HTML attributes are being deprecated and it is
being recommended to use CSS. So its a good idea to start using CSS in all the
HTML pages to make them compatible to future browsers.

There are 3 types of CSS which are below:

o Inline CSS
o Internal/ Embedded CSS
o External CSS

Inline CSS

It is used for a limited section. Whenever our requirements are very


small we can use inline CSS.
 
It will affect only single elements. In HTML we require that various HTML
tag's views are different so then we use inline Cascading Style Sheets.

Inline Style Sheets are included with HTML element i.e. they are placed inline
with the element. To add inline CSS,

An inline CSS uses the style attribute of an HTML element.

<h1 style="color:blue;background-color:green">A Blue
Heading</h1>

Embedded Style Sheets are used to apply same appearance to all


occurrence of a specific element. These are defined in <head> element by
using the <style> element.
The <style> element must include type attribute. The value
of type attribute specifies what type of syntax it includes when rendered by
the browser.
Syntax

<head> <title> …. </title>


<style type =”text/css”>
…….CSS Rules/Styles….
</style></head>

<style>
body {background-color: powderblue;}

</style>
p {color:green; text-align: left; font-size: 10pt}
h1 { color: red; font-weight: bold}

You might also like