Survey Form - Build a Survey Form:

Tell us what’s happening:
Describe your issue in detail here.
It tells me that I should make two radio button groups. What does that mean?

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<h1 id="title">Survey</h1>
<p id="description">fill this survey to make sure you're not a simp. this is NOT a scam.</p>
<fieldset>
<form id="survey-form">
<input id="name" placeholder="Name here..." type="text" required></input>
<input id="email" placeholder="Put your email here.." type="email" required></input>
<input id="number" placeholder="13+" pla type="number" min="13" max="100"></input>
<label id="name-label">e</label>
<label id="email-label">e</label>
<label id="number-label">e</label>
<select id="dropdown">
  <option>would you rather...</option>
  <option>BUY A WAIFU</option>
  <option>BUY WIFI</option>
</select>
<h1>Multiple Choice</h1>
<input name="opt 1" value="1" type="radio">I enjoy animes bcz I enjoy them.</input>
<input name="opt 2" value="2"  type="radio">I enjoy animes bcz of girls :)</input>
<input name="opt 3" value="3"  type="radio">I don't watch anime :/</input>
<input name="opt 4" value="4"  type="radio">what are you talking about?</input>
<h1>Single choice</h1>
<input value="not cool" type="checkbox">i use twitter</input>

<input value="cool" type="checkbox">i don't use twitter</input>

<input name="opt 5" value="5" type="radio">I'm a tenth grader.</input>
<input name="opt 6" value="6"  type="radio">I'm a fourth grader.</input>

<h1>Last question: What do you think about Among Us?</h1>
<textarea></textarea>
<input type="submit" id="submit"></input>
</form>
</fieldset>
</body>
</html>
/* file: styles.css */
h1 {
color: white;
text-align: center;
}

body {
background-color: gray;
}

fieldset {
color: white;
}

p {
color: white;
}

textarea {
margin: center;
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS aarch64 14816.131.0) 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:

I put you question in the post body where it’s easier to read.

thanks
btw can you help me with this?

Your radios all have different names, radio buttons are grouped with the name attributes

thanks ur a live saver

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