Empowering the younger Generation

Empowering the younger Generation


Saturday, February 17, 2018

CSS

                                          

 CSS-Cascading Style Sheet.

  • CSS stands for Cascading Style Sheets
  • 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
  • External stylesheets are stored in CSS files 

 

Related image

 

CSS syntax ⇒


Syntax                          

 

It is writing for three ways

 

Inline style sheet

<h1 style="color:blue;margin-left:30px;">
This is a heading.</h1>

Internal style sheet

body {background-color:lightblue;}
h1{color:nave;margin-left:20px;}

External style sheet

<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>


more lear to https://www.w3schools.com/css/
                    

Thank you!