Survey Form - Build a Survey Form

I have tried these but i still have miss thpe on these show me how to do it I am in the project
Failed:Every radio button group should have at least 2 radio buttons.

Your code so far

<!-- file: index.html -->
<!DOCTYPE Html>
<html lang="en">
  <head>
  </head>
    <body>
      <h1 id="title">survey-form<h1>
  <p id="description">These is a survey form which help us to understand detail</p>
  <form id="survey-form">
    <label id=name-label>name</label>
  <input id="name" type="text" placeholder="Enter your name:" required>
  <label id="email-label">email</label>
  <input id="email" type="email" placeholder="Enter your Email:" required>
  <label id="number-label">Number</label>
  <input id="number" type="number" placeholder="Enter your number:"  min="10" max="13">
  <select id="dropdown">
    <option></option>
    <option></option>
  </select>
<lable for="option1"></lable>
  <input type="radio" id="option1" value="option1" name="quetion">
  <lable for="option2"></lable>
  <input type="radio" id="option2" value="option2" name="question">
  <lable for="option"></lable>
  <input id="option" type="radio" value="option" name="option">

  <lable for="option"></lable>
  <input id="option" type="radio" value="option" name="option">

  <form id="survey-form">

  <lable for="checkbox"></lable>
    <input id="checkbox" type="checkbox" value="checkbox">
  <lable for="checkbox2"></lable>
    <input id="checkbox" type="checkbox"  value="checkbox">
  <lable id="comment"> </lable>
  <textarea id="comment" type="text" name="comments" row="4" col="50" placeholder="Enter your comment">
    
    <input id="submit" type="submit" value="submit">
      </form>

    </body>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36

Challenge Information:

Survey Form - Build a Survey Form

The name value is not the same. Check your spelling.

Validate your HTML.

https://validator.w3.org/nu/#textarea

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