Type your answer underneath each question. 😉 Make sure you save your answers!
Resume the video when you are done.
1️⃣ What is the name of the website to find additional information about CSS styles?
2️⃣ Which property will make a font bold? Create a style rule to make a paragraph element bold.
3️⃣ Which property will give text a shadow effect? Visit the W3Schools website to find out. Then
create a style rule to give a heading element a shadow effect - you can try adding a color and blur
to your shadow effect too.
4️⃣ With CSS, you can apply a style rule to more than one element at a time, which means less
lines of code. Refactor the following to make it DRY code.
h1 {
color: blue;
}
p {
color: blue;
}
li {
color: blue;
}
a {
color: blue;
}
5️⃣ On your webpage, in order to link to your css file, the <link tag> is nested inside of the
_________ tag.