What is CSS?
CSS means the styling of a document
- CSS is the language we use to style an HTML document.
- CSS This tutorial will teach you CSS from basic to advanced.
- This tutorial will teach you CSS from basic to advanced.
* 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: