scrimba
Review: How to format CSS properties
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Review: How to format CSS properties
AboutCommentsNotes
Review: How to format CSS properties
Expand for more info
review.md
run
preview
console
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.

Console
index.html
-2:43