Menu
Coddy logo textTech

Recap - Basic Form

Part of the Fundamentals section of Coddy's HTML journey — lesson 40 of 60.

challenge icon

Challenge

Easy

Create an HTML document as shown in the picture below:

It should include three label-input pairs:

  1. A label with the text "Full Name:" associated with a text input field. The input field should have the name "fullname" and a placeholder that says "Enter your full name".
  2. A label with the text "Email:" associated with a text input field. The input field should have the name "email" and a placeholder that says "Enter your email".
  3. A label with the text "Password:" associated with a password input field. The input field should have the name "userpassword" and a placeholder that says "Enter your password". Set the maximum length of this field to 20 characters.

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <!-- Write code here -->
    </body>
</html>

All lessons in Fundamentals