The code to make a paragraph
Start: <p> End: </p>
Meaning of <h1> </h1>
To make a heading
code to change background color of website
body {
background-color: blue;
}
Code for a heading
Start: <h1> End: </h1>
Purpose of inspector tool
To see what code makes something on the website happen
Code to change font of paragraph
p {
font-family: sans-serif;
}
Code to align text
p {
text-align: left;
}
Code for image
<img src="" alt=""
Meaning of
p {
}
To style a paragraph
Code to underline something
h1 {
text-decoration: underline;
}
Code to change box shadow of image
img {
box shadow: 6px 6px gray;
}
Code to link style sheet
<link rel="stylesheet" href=""
Meaning of <br>
To separate lines in a paragraph
Code to change color of paragraph
p {
color: ;
}
Code to change size of image
img {
width: 200px;
height: 150px;
}
Code for making a class
.Myclass {}
Meaning of <a href=""> </a>
To link main page to other pages
Code to stylize class
classname {
}
code to change position of image
.main-img {
float: left;
}