Menu
Coddy logo textTech

Form input I

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

challenge icon

Challenge

Easy
  1. Inside the form wrapper, create h2 tag with the text Sign In
  2. Below the h2 tag, create a form tag.
  3. Inside the form tag create a div with the class name form-control.
  4. Inside form-control create an input, with type of text and required attribute:

    <input type="text" required>
  5. Below is the text input. Create a label tag with the text: Email or phone number

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