Menu
Coddy logo textTech

Form input II

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

challenge icon

Challenge

Easy
  1. Below form-control create another div with the same class name, form-control
  2. Inside this second form-control, create an input of type password and required attribute.
  3. Below this input, create a label tag with the text: Password

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