Basic code
Definitions
CSS Styles
CSS Rules
100

The code to make a paragraph

Start: <p> End: </p>

100

Meaning of <h1> </h1>

To make a heading

100

code to change background color of website

body {

background-color: blue;

}

200

Code for a heading

Start: <h1> End: </h1>

200

Purpose of inspector tool

To see what code makes something on the website happen

200

Code to change font of paragraph

p {

font-family: sans-serif;

}

200

Code to align text

p {

text-align: left;

}

300

Code for image

<img src="" alt=""

300

Meaning of 

p {

}

To style a paragraph

300

Code to underline something

h1 {

text-decoration: underline;

}

300

Code to change box shadow of image

img {

box shadow: 6px 6px gray; 

}

400

Code to link style sheet

<link rel="stylesheet" href=""

400

Meaning of <br>

To separate lines in a paragraph

400

Code to change color of paragraph

p {

color: ;

}

400

Code to change size of image

img {

width: 200px; 

height: 150px;

}

500

Code for making a class

.Myclass {}

500

Meaning of <a href="">   </a>

To link main page to other pages

500

Code to stylize class

classname {

}

500

code to change position of image

.main-img {

float: left;

}

M
e
n
u