Survey Form - Build a Survey Form

Tell us what’s happening:

Please I need help with survey form step 38 it proving difficult

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<h1 id="title">survey-form</h1>
<p id="description">thanks for choosing us</p>
<form id="survey-form"> <input id="name" required="name"  type="text" placeholder="name" /><input id="email" required="email" placeholder="email" type="email"/><input id="number" placeholder="number" type="number" min="10" max="18" /><label id="name-label" =" " >SURVEY FORM</label><label id="email-label">freecodecamp @gmail.com</label><label id="number-label"  >+2349117035812</label><select id="dropdown" required><option value="choose" >Select current role</option><option value="student">student </option><select/><input type="radio" type="radio" type="radio" name="pselm" value="selm" />selm<input type="radio" type="radio" type="radio" name="meme" value="eme" />eme<input type="checkbox" value="radio" /><input type="checkbox" value="radio" /><textarea></textarea><input id="submit" type="submit" /><link rel="stylesheet" href="styles.css">  </form>

/* file: styles.css */

Your browser information:

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

Challenge Information:

Survey Form - Build a Survey Form

Hi there and welcome to our community!

You have some issues with your code:

  1. Your code is not formatted correctly, making it difficult to read or debug. Run it through an HTML formatter if you need to see how it should be formatted.
  2. Your document is not structured correctly. You should have an html element, with head and body elements nested inside it. Your head element should contain title, link, meta and other elements which contain the document metadata. The body element should contain the document content.
  3. You are failing test 38 because a radio group is created when a number of radio input elements share the same name attribute. Your radio elements do not have matching name attributes.

Here is an example of a correctly structured and formatted HTML boilerplate: