Conte-nos o que está acontecendo:
Quando verifico meu código, está sendo mostrado um erro, que não consigo achar, pois meu código parece ter tudo o que é solicitado.
Diga como nos encontrou:
Falhou:36. Todos os seus botões de opção devem ter um atributo value e um valor.
O que frazer?
Seu código até o momento
<!-- file: index.html -->
<DOCTYPE html>
<html lang="en">
<head>
<meta charset+"utf-8">
<title>Formulário de pesquisa</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title" >Escola HashTag Programação</h1>
<h3>Queremos saber mais sobre você!</h3>
<p id="description" >Formulário de Pesquisa</p>
<fieldset>
<form id="survey-form">
<label id="name-label">Nome<input id="name" type="text" required placeholder="Digite o seu nome aqui." ></label>
<label id="email-label">Email<input id="email" type="email" required placeholder="Digite o seu email aqui." ></label>
<label id="number-label">Idade (opcional)<input id="number" type="number" min="14" max="60" placeholder="Idade" ></label>
<P>Diga como nos encontrou:</p>
<select id="dropdown" name="origem">
<option value="google">Google</Option>
<option value="instagram">Instagram</Option>
<option value="facebook">Facebook</Option>
</select>
<P>Você já sabe Programar?</p>
<label>Sim<input type="radio" name="sim-nao" ></label>
<label>Não<input type="radio" name="sim-nao" ></label>
<p>Quais cursos você pretende fazer?</p>
<label><input type="checkbox" value="html">Html e CSS</label>
<label><input type="checkbox" value="javascript" >Javascript</label>
<label><input type="checkbox" value="java" >Java</label>
<label><input type="checkbox" value="php" >PHP</label>
<label><input type="checkbox" value="python" >Python</label>
<label><input type="checkbox" value="c" >C C# C++</label>
<label><input type="checkbox" value="sql" >SQL</label>
<label><input type="checkbox" value="ruby" >Ruby</label>
<label><input type="checkbox" value="swift" >Swift</label>
<label><input type="checkbox" value="bootstrap" >Bootstrap</label>
<label><input type="checkbox" value="jquery" >JQuery</label>
<label><input type="checkbox" value="react" >React</label>
<label><input type="checkbox" value="express" >Express</label>
<p>Deixe suas dúvidas aqui:</p>
<label><textarea></textarea></label>
<label><input id="submit" type="submit"></label>
</form>
</fieldset>
</body>
</html>
/* file: styles.css */
Informações do seu navegador:
Agente de usuário: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Informações do desafio:
Formulário de pesquisa - Criar um formulário de pesquisa