EXERCISE 1a (adding borders)
The border shows the bounding box of the element. Inside the border is padding. Outside the border is margin.
Type this into the css document "style.css" and save.
h1 {
border:1px solid #006600;
}
h2 {
border:2px solid #990000;
}
h3 {
border:3px solid #003399;
}
ul {
border:4px solid #003333;
}
p {
border:5px solid #330000;
}
img {
border:6px solid #660000;
}