Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
I am currently stuck on #13 where it’s asking to create two radio buttons with the name attribute. I don’t know exactly what is supposed to go with the name attribute.
Your code so far

<!-- file: index.html -->
<h1 id="title">Build a Survey Form</h1>
<p id="description">We're building a survey form that looks similar to the form that we just created in the previous project</p>
<form id="survey-form" <input id="name" type="text"></input>Crystal Reyes</form>
<input id="email">crystal_0612@outlook.com</input>
<input id="number" min="1" max="20">12</input>
<label id="name-label" id="email-label" id="number-label"></label>
<select id="dropdown" min="1" max="12"></select>
/* file: styles.css */

Your browser information:

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

Please let’s have the exact instruction.

  1. Inside the form element, you can select an option from a group of at least two radio buttons that are grouped using the name attribute

From 13-16 are confusing me. I’m basically supposed to enter my own values in those right?

  1. Inside the form element, you can select several fields from a series of checkboxes, each of which must have a value attribute
  2. Inside the form element, you are presented with a textarea for additional comments
  3. Inside the form element, you are presented with a button with id of submit to submit all the inputs

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