Form input I
Lesson 3 of 19 in Coddy's Netflix Sign-in Page Clone | Front-end project course.
Challenge
Easy- Inside the form wrapper, create
h2tag with the textSign In. - Below the
h2tag, create aformtag. - Inside the
formtag create adivwith the class nameform-control. Inside
form-controlcreate aninput, withtypeoftextandrequiredattribute:<input type="text" required>- Below is the text input. Create a
labeltag 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>