Software-Engineering


# What is CSS?

CSS stands for Cascading Style Sheets. CSS describes how HTML elements should be displayed on screen, paper or in other media.

It saves a lot of work. It can control the layout of multiple web pages all at once. You can have external stylesheets stored in .css files.


# Basic CSS Structure

h1{
	color: blue;
	background-color: yellow;
}