Menu
Coddy logo textTech

Body

Lesson 5 of 11 in Coddy's Circular Progress Bar | Front-end Project course.

challenge icon

Challenge

Easy

Target Body:

body {
   ...
}
  1.  Set display to flex, and center the elements inside the body. (set align-items and justify-content to center)
  2.  Set the background color of your choice.
    (Try this for gradient background: background: linear-gradient(135deg, rgb(75, 204, 255), rgb(255, 35, 255));
  3. Set height to 100 vh.

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 Circular Progress Bar | Front-end Project