Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
I don’t understand where my input tag is wrong.
** Failed:Your #email should require input.**
Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<link rel="stylesheet" href="styles.css">
<head>
    <title>Survey Form</title>
    </head>
    <body>
    <h1 id="title">Survey Form</h1>
    <p id="description">Description</p>
    <form id="survey-form"> 
      <input placeholder="name" required id="name" type="text">
      
      <input placeholder="email" type="email" id="email" value="submit">

      <input placeholder="number" id="number" type="number" min="0" max="9">
    
    <label id="name-label">Name</label>
    <label id="email-label">Email</label>
    <label id="number-label">Number</label> 

    <select id="dropdown">
      <option value="Subscribe">Subscribe</option>
      <option value="Touch">Touch</option>
      </select>
      
      <input type="radio" name="option" value="choose">
      <input type="radio" name="option" value="choose">
      
       <input type="checkbox" value="1">
       <input type="checkbox" value="2">

       <textarea></textarea>
       <input id="submit" type="submit">
        
</form>

      </body>


/* file: styles.css */
title{

}
description{

}

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

you did not make it required

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.