Menu
Coddy logo textTech

Registration Form

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

challenge icon

Challenge

Easy

After the event details section, create a <div> for the registration form like on the picture below.

Inside the <div>, add the following:

  1. An <h2> tag with the text Register Now.
  2. A <form> tag that contains:
    1. An input field for the name with a type of "text" and a name of name.
    2. An input field for the email with a type of "email" and a name of email.
    3. A dropdown menu for selecting a session, allowing the user to choose either Morning or Afternoon.
    4. A checkbox to agree to the terms, along with a <label> next to it.
    5. A submit button.

Try it yourself

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

All lessons in Fundamentals