CSS - Lesson 2 - The basic Syntax
Css, wherever it is written always follows a basic syntax. Look at the example below.
selector
{
property:value;
}
An example of this is the code;
body
{
background-color:black;
}
Lesson 1-Getting started