Tell us what’s happening:
Describe your issue in detail here.
hello everyone, i was completing this challenge and i can’t pass this mission “Every radio button group should have at least 2 radio buttons.” , I tried in all the ways that came to my mind, even reading something about the same problem but nothing is resolved if anyone has any ideas, below is my code (given automatically by the request for help)
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">Title</h1>
<p id="description">website that allows you to learn programming languages and more</p>
<form id="survey-form">
<select id="dropdown">
<option type="radio" value="value">
<option type="radio" value="value">
</select>
<label id="name-label">NAME<input id="name" type="text" required placeholder="full name"></label>
<label id="email-label">EMAIL<input id="email" type="email"required placeholder="namesurname@bla.bla"></label>
<label id="number-label">NUMBER<input id="number" min="3333333333" max="9999999999" type="number" placeholder="3692581479"></label>
<input type="radio" name="1" value="value">
<input type="radio" name="2" value="value">
<selection>
<input type="checkbox" value="value">
<input type="checkbox" value="value">
<textarea></textarea>
<input type="submit" id="submit">
</selection>
</form>
</body>
</html>
Challenge: Survey Form - Build a Survey Form