Survey Form - Build a Survey Form

Tell us what’s happening:
not getting it right what should i do???help

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <title>Survey Forms</title>
  <link rel="stylesheet" href="styles.cc">
</head>
<body>
  <h1 id="title">Survery Forms</h1>
  <p id="description">Thank you for taking time to help us improve the platform</p>
  <form id="survey-form">
    <fieldset>
      <label id="name-label">Enter your name:<input id="name" type="text" placeholder="name" required></lable>
    </fieldset>
    <fieldset>
      <label id="email-label">Enter your email:<input id="email" type="email" placeholder="email" required></label
    </fieldset>
    <fieldset><label id="number-label">Enter your number:<input id="number" type="number" min="0" max="10" placeholder="number"required></fieldset>
    <fieldset>
      <select id="dropdown">
        <option>not disabled</option>
        <option>not disabled</option>
        <input type"radio">
      </select>
    </fieldset>
  </form>
  </body
</html>
/* file: styles.css */
body{width:100%;height:100vh;background-color:#3f3f7f;color:red}

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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:

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