Skip to main content

CSS-Introduction

CSS (Cascading Style Sheets) is a stylesheet language used to make a webpage more visually appealing. This is used to simplify the process of making web pages presentable. It enables the use of styles on web pages. More importantly, it allows you to do so without regard for the HTML that makes up each web page.

Demo

body {
background-color: lightblue;
}

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

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