Form
Lesson 1 of 7 in Coddy's Login Form - HTML/CSS Project course.
Welcome to Login Form project!
Let's get started,
The HTML <form> tag is used to create an HTML form for user input,
<form>
<!-- Other form elements here -->
</form>Challenge
EasyAdd a form tag inside the body.
Try it yourself
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Write HTML code here -->
</body>
</html>