Menu
Coddy logo textTech

Body

Lesson 5 of 10 in Coddy's Stopwatch - HTML/CSS/JS Project course.

Let's move to the CSS (styling) part.

You will be asked for some specific styles, but you also have a lot of room to use your creative mind, use it!

challenge icon

Challenge

Easy

In the CSS file, target the body tag and add the following:

  1. font family of your choice
  2. margin set to 0
  3. background of your choice, not default
  4. height of 100vh
  5. center everything using flex box

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in Stopwatch - HTML/CSS/JS Project