Can someone review my CSS for the Dasmoto’s Arts & Crafts? I noticed codecademy specified all of the font at the beginning instead of inside each element, and also the h2 element was done differently in mine.
- {
background-color: white;
}
#title {
font-family: Helvetica;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
background-image: url(‘https://content.codecademy.com/courses/freelance-1/unit-2/pattern.jpeg?_gl=1*t5tt22*_ga*MzgwNDMxMDk3MS4xNjc5NTUyNDgy*_ga_3LRZM6TM9L*MTY3OTU1NDc1OS4yLjEuMTY3OTU1NTE2NC41MS4wLjA.’)
}
h2 {
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
background-color: mediumspringgreen;
}
h3 {
font-weight: bold;
font-family: Helvetica;
text-align: left;
}
.frames {
background-color: lightcoral;
}
.paint {
background-color: skyblue;
}
strong {
font-family: Helvetica;
color: blue;
}
p {
font-family: Helvetica;
}