Survey Form - Build a Survey Form - ceyXCBaZTiTqyhubMQ1wV

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<h1 id="title">Survey Form</h1>
<p id="description">With this form you will help us unlock new projects for you </p>
<link rel="stylesheet" href="styles.css">
<form id="survey-form">
  <input id="name" type="text" name="name" required placeholder="Hello my name is...">Please insert your name />
    <label id="name-label" > your name is important to us</label> 
  <input id="email" type="email" name="email" required placeholder="john.doe@doe.com">Please insert your email />
    <label id="email-label" >Your name is your signature </label>
  <input id="number" type="number" min="4" max="12" name="number" placeholder="09090203"/>
    <label id="number-label">Your number is subjective </label>
  <select name="gender" id="dropdown">Please select your gender
    <option value="male">male</option>
    <option value="female">female</option>
    <option value="notsp">not gonna say</option>
    </select>
    <br>
<fieldset>
<legend>Eagerness</legend>
<div class="container">
  <p>Eagerness to participate</p>
  <label><input type="radio" id="account-type" name="account-type" value="with-us" required />Are you with us</label>
    <label><input type="radio" id="account-type" name="are you not" value="against-us" required/>Are you against us</label>
    <label><input type="radio" id="account-type" name="solidary" value="solo" required />I fly solo</label>
  </div>
</fieldset>
  <br>
<fieldset>
  <label>
        <input type="checkbox" name="terms" class="inline" value="terms" required /> I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
        <input type="checkbox" name="news" class="inline" value="news" required />Here are the <a href="https://www.freecodecamp.org/news/">news</a>
			  </label>
</fieldset>
<textarea>
  </textarea>
  <fieldset>
    <legend>Engagement</legend>
    <div class="container">
      <p>Do you like to buy something from us in the future</p>
<label> Do you want to buy something</label>
<label><input type="radio" id="type" name="found" value="yes" />yes</label>
<label><input type="radio" id="neg" name="not" value="no" />no</label>
<label><input type="radio" id="N/A" name="maybe" value="prob" />probably</label>
<label><input type="radio" id="defn" name="defnot" value="hell" />hell no</label>
</div>
</fieldset>
<br>
<fieldset>
  <button id="submit">Submit</button>
</form>
/* file: styles.css */
<style>

</style>

  **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:

…?
We really need more information to know what you need help with.

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