What is CSS?

CSS means the styling of a document



* To understand better here's a simple CSS code:




HTML code:



<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>


CSS code:



body {
  background-color: blue;
}

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

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

When Run:

Not working? try reloading