Survey Form - Build a Survey Form

Hi there!
i am present working on survey form certification project
in uploaded image i highlighted error code, please check tell me what exactly i have to do

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
  <title>Survey form of free code camp</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="heading">
  <h1 id="title">freeCodeCamp Survey Form</h1>
  <p id="description">Thank you for taking the time to help us improve the platform</p>
  </div>
  <section>
    <form id="survey-form">
      Name<input id="name" type="text">
      Email<input id="email"type="Email" >
    </form>
  </section>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

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

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

In an <input> tag if you add the word “required” to the attributes, it will force that something has to be filled in/chosen etc. An example
<input type="checkbox" required>

thank you its resolved

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