DEV Community

Suma
Suma

Posted on

WHAT IS CSS

WHAT IS CSS

CSS stands for Cascading Style Sheets
It is used to style and design your HTML webpage
CSS controls the visual appearance of webpages

WHY WE USE CSS

  • To make the webpage look attractive and organized

  • To change colors,fonts,and backgrounds

  • To make webpages look good on mobile and computer

  • To separate design from content

  • CSS makes it beautiful_it adds colors,layouts,font and spacing

CSS EXAMPLE

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}


Enter fullscreen mode Exit fullscreen mode

Top comments (0)