Survey Form - Build a Survey Form

Tell us what’s happening:
i only got 20% and i did everything it said to do

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF_8">
    <title>Survey Form</title> <link rel="stylesheet" href="styles.css"/><div id="outside"</head>
    <body>
      <h1 id="title"> Boggie's Screen Print Survey Form</h1>
      <p id="description">Thank you for taking the time to fill out this form</p>
<form id="survey-form">
  <div>
    <label id="name-label">Name<input type="text" id="name" placeholder="Enter your Name" required/></label></div> <div>
      <label id="email-label">Email<input type="email" id="email"placeholder="Enter your Email" required/></label></div>
      <div><label id="number-label">Age<input type="number" id="number" name="age" min="10" max="120"placeholder="Age" required/></label></div>
      <label>What best describe you?
<select id="dropdown">
  <option value="">(select one)</option>
  <option value="1">Test1</option>
  <option value="2">Test2</option></select>
  <div>
  <label>Would you recommend us?</label></div>
   <div>
          <label> Definetly<input type="radio" name="rec" value="Defintely"></label>
        </div>
        <div>
          <label>Maybe<input type="radio" name="rec" value="Maybe"></label>
        </div>
        <div>
          <label> Not Sure <input type="radio" name="rec" value="Not Sure"></label>
        </div>
<label>What is your favorite feature of Booogie's?</label>

      <select id="dropdown">
          <option value="">(select one)</option>
          <option value="1">Print Quality</option>
          <option value="2">Promotional Deals</option>
          <option value="3">Service</option>
          <option value="4">Website</option>
      </select>
       <div>
        <label> What would you like to see improved?</label></div>
        <div>
          <label> Website Interface<input type="checkbox" name="improved" value="Website Interface"></label>
        </div>
        <div>
          <label> Print Quality<input type="checkbox" name="improved" value="Print Quality"></label>
        </div>
          <label> Customer Service<input type="checkbox" name="improved" value="Customer Service"></label>
        <div>
          <label> Shipping Time<input type="checkbox" name="improved" value="Shipping Time"></label></div>
          <label>Any comment or suggestions?
        <textarea name="comments" rows="3" cols="30" placeholder="Enter your comment here..."></textarea>
      </label>
      <div>
      <input type="submit" id="submit" value="Submit"/>
      </div>
      </form>
      </body>
/* 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/105.0.0.0 Safari/537.36 Edg/105.0.1343.42

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

can you show me what 20% you are referring to?
(your code seems okay)

20% means you completed 1 of the 5 projects. The projects are not graded.

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