Skip to main content

Featured

What is css? Css tutorial

 

CSS : INTRODUCTION

Css means CASCADING STYLE SHEET. This is very awesome language which is used for creating a muscular system on skeleton(html) of a website. CSS is only applicable in developing a website. You can use three ways to apply css which we will study next.

CSS : SYNTAX

  Selecotor {
         css-attribute-name:value;
  }
  
selector is the tag name for which you want to apply css. you can use id or class attribute for creating a unique id for the tag in which you are using for. and later you can use css and access class through .classname as selector and #classname and apply for specified tag.
example
 h2 {
    font-size:20px;
    font-family:arial;
 }

CSS : TYPES

there are three types of Css. Read it by clicking its name

External css

External css is a type of css which is used by creating a file with extension .css (arrangeTheFuture.css) and ghere you can create som blocks of code and when you will link it in html through link tag then your css will be applied to your website

Internal Css

Internal css is another type of css in which you create style tag insidd head tag of your website and then you write some block of code inside style tag and ypur css will be applied to your webpage.

Inline Css

Inline css is a type of css in which you can add css in tags (<font style="font-size:20px;">). this type us not so good because using css is very tough in this way. use External css for best performance

CSS : PROJECTS

Internal css

create a html file and some css using internal css. (take help of internet if unable)

Inline css

create a html file and addsome css using Inline css. (take help of internet if unable)

Comments

Popular Posts