Menu
Coddy logo textTech

Bottom Part

Lesson 19 of 19 in Coddy's Netflix Sign-in Page Clone | Front-end project course.

challenge icon

Challenge

Easy

Target class form-help:

  1. Set the display to flex
  2. Set justify-content to space-between

Target class remember-me

  1. Set the display to flex

Target input of the class remember-me, set margin-right to 5px.


For a more precise finish, add this code to the end:

.form-wrapper a:hover {
    text-decoration: underline;
}

form .form-help :where(label, a) {
    font-size: 14px;
}

form button:hover, #code:hover {
    opacity: 0.8;
}

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 Netflix Sign-in Page Clone | Front-end project