Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
i have this issue
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 the survey below</p>
     <form id="survey-form">
     <label id="name-label">Name<input name id="name" type="text" placeholder="text"required></label>
<label id="email-label">Email<input id="email" type="email"placeholder="email"required></label>
<label id="number-label">Number<input id="number" type="number" min="50" max="50"placeholder="number"></label>
<label>Can you attend<select id="dropdown">
  <option>yes</option>
  <option>no</option>
  <label><input type="radio"value="yes" name="yes">Gift giving</label>

  <label><input type="radio"value="no"name="no">hugs</label>
<label> Did you hear about us through a friend<input type="checkbox"value="friend"></label>
<label>Terms and conditions<input type="checkbox" value="website"></label>
<textarea></textarea>
<input id="submit" type="submit">
  
/* 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/114.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

what am i not see so confused

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