Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here. i don’t understand what i am suppose to do : they ask that me #name should have a placeholder attribute and value

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">

  </head>
<body>
   <h1 id="title">Survey Form
   </h1>
   <p id="description">please fill in this form carelly
   </p>
   <form id="survey-form">
    <label for="name" id="name-label">
    <input id="name" type="text" placeolder="name" value="" required>
    <label for="email"  id="email-label"  >
    <input id="email" type="email" value="" required placeolder="email">
    <label for="number" id="number-label">
    <input id="number" value="" placeolder="number" type="number" min="0" max="2000">
    <select id="dropdown">
      <option></option>
      <option></option>
     </select>
     <input type="radio" name="">
     <input type="radio" name="">
     <textarea></textarea>
     <button id="submit"></submit>
     </form>
</body>


</html>

/* 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/116.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Change all your ‘placeolder’ attributes to the correct syntax of ‘placeholder’.

ok thanks you after that i another 4 error i my code

please hel me with this 4follwing question : 1) you should have at least two input elelments with type of checkbox (checkboxes) that are descendants of#survey-form
2)all your checkboxes inside #survey-form should have a value attribute and value
3)all you radio buttons should have a value attribute and value
4) all your buttons should have a value attribute and vale

  1. Bedsides for your to radio buttons you should have two checkboxes users can click on by giving them the type attribute with the value of ‘checkbox’.

  2. give your checkbox element a value attribute with a value:

  1. same for your button and radio elements:

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