Menu
Coddy logo textTech

Style body

Lesson 4 of 14 in Coddy's DOM Project - Calculator course.

Here we are styling the body tag!

challenge icon

Challenge

Easy
  1. Set the display to flex
  2. Set justify-content to center and align-items to center.
  3. set height of 100 vh
  4. Add a background color of your choice.
  5. Choose the font of your choice.

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 DOM Project - Calculator