Survey Form - Build a Survey Form

Tell us what’s happening:
Hallo i need to help for last thing in this course: Every radio button group should have at least 2 radio buttons
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<h1 id="title">Title</h1>
<p id="description">description</p>
<form id="survey-form" value="1"><label id="name-label"><input id="name" type="text" required placeholder="name"/>describes the input</label>
<label id="email-label">
<input id="email" type="email" required placeholder="email"/>describes the input</label>
<label id="number-label">
<input id="number" type="number" min="5" max="9" placeholder="number"/>describes the input</label>


<select id="dropdown">
  <option value="1">not disabled</option>
  <option value="2">not disabled</option>
  <input type="radio" value="1" name="1"  />
  <input  type="radio" value="2" name="2"  />
<input type="checkbox" value="1"/>
<input type="checkbox" value="2"/>
<textarea></textarea>
<input id="submit" type="Submit"/>

  </form>
  </select>
/* file: styles.css */
h1{
    width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

A group is created by giving the radio elements the same name attribute value.

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