Survey Form - Build a Survey Form

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

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="styles.css">
<head>
  <title>
    Stan's Survey Form
  </title>
</head>
<body>
  <h1 id="title">
  Stan's Survey Form
  </h1>
    <p id="description"> Thank you for taking time to build capacity, the world needs you. </P>
    <form id="survey-form">
      <p> <label id="name-label"> Name <input id="name" type="text" placeholder="Enter your name" required></input>
      </label></p>
      <p><label id="email-label"> Email <input id="email" type="email" placeholder="Enter your email" required></input>
      </label></p>
      <p><label id="number-label"> Age <input id="number" type="number" min="13" max="100" placeholder="Enter your age" required></input>
      </label></p>
      <p><label> Which option best describes your current role?
      <select id="dropdown">
        <option>Select current role</option>
        <option>Student</option>
        <option>Full Time job</option>
        <option>Full Time Learner</option>
        <option>Prefare not to say</option>
        <option>Other</option>
      </select>
      </label></p>
      <p> Would you recommend this Tech hub to a friend?
        <label><input type="radio" name="referral" value="Definitely"> Definitely 
      </label>
      <label><input type="radio" name="referral" value="Maybe"> Maybe 
      </label>
      <label><input type="radio" name="referral" value="Not-sure"> Not Sure 
      </label></p>
      <P> What would you like to learn? <label><input type="checkbox" value="Front-end"> Front-end development </label>
      <label><input type="checkbox" value="Figma"> Figma 
      </label>
      <label><input type="checkbox" value="Digital-Marketing"> Digital Marketing
      </label>
      <label><input type="checkbox" value="Event-Planning"> Event Planning
      </label>
      <label><input type="checkbox" value="Baking"> Baking
      </label>
      <label><input type="checkbox" value="Web-Development"> Web Development
      </label>
      </p>
      <p><label> Any Comments? <textarea>
      </textarea></label></p>
      <button id="submit"> Submit
      </button>
    </form>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

do yo have a problem or an issue if so please tell us, it will help us to help you

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