Survey Form - Build a Survey Form "radio buttons"

Tell us what’s happening:

After running the test I have all things checked off outside of:
“Every radio button group should have at least 2 radio buttons.”

Any help with how I do this would be fantastic. Thanks in advance!

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<html charset="UTF-8">
  <title>Salsa and hot sauce survey</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <h1 id="title">Salsa and hot sauce survey
  </h1>
  <p id="description">Thank you for taking the time to help us improve our sauces!</p>
  <form id="survey-form"> 
  <input id="name" type="text"placeholder="John Doe" required></input>
  <input id="email" type="email"placeholder="JohnDoe@gmail.com"required></input>
  <input id="number" type="number" min="0" max="120" placeholder="30"</input>
  <label id="name-label" placeholder="John">Name</label>
  <label id="email-label">Email</label>
  <label id="number-label">Age</label>
  <survey-form>
    <input type="radio" value="Monkey sauce" name="Monkey sauce"></input>
    <input type ="radio" value="Cheetah sauce" name="Cheetah sauce"></input>
    <dropdown></dropdown>
    <input type="checkbox" value="Monkey sauce"></input>
    <input type="checkbox" value="Cheetah sauce"></input>
    <textarea></textarea>
  <survey-form>
    <button id="submit"></button>
  </form>
  <select id="dropdown" ><option></option><option></option></select>
  </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/127.0.0.0 Safari/537.36 Edg/127.0.0.0

Challenge Information:

Survey Form - Build a Survey Form

1 Like

Story 13 says the 2 radio buttons must be grouped using the name attribute. That means the name must be the same.

2 Likes