Exercises: CSS

We have built a website for you to test your CSS knowledge. You can find the code within your javascript-projects/css/exercises directory!

Note

Open the index.html file in your browser to view the application.

Utilize the pwd command to view your current working directory:

Image of user entering the pwd to console

The current working directory in the above image is /home/john/Documents/launchcode/curriculum/exercises-studios/javascript-projects/css/exercises

If you copy and paste the filepath after you run the pwd on your machine into a browser window and add index.html to the end of the string you will find your application.

index-html file opened within browser window

For the exercises, add the following style rules to the website:

  1. Change the background color to yellow.

    Check Your Solution
  2. Change all paragraph text color to green.

  3. Change all h1 to 36 px font size.

    Check Your Solution
  4. Align all text to the center of the page.

  5. Let’s say that you don’t like aligning all of the text to the center. Use a CSS class to align only the headings to the center of the page.

    Check Your Solution
  6. Within index.html add a center class to all header tags (h1, h2 etc.)

    Check Your Solution
  7. Change the font color of elements with the id, cool-text, to blue.

  8. Use a CSS id to change the elements in the ordered list to a color of your choosing.

    Check Your Solution
  9. Within index.html add the id attribute to the ol tag.

    Check Your Solution
Note

We learned from the reading that the location of CSS and the selector type can change the order of precedence of the CSS rules. Try different locations and selector types and see what happens!