Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
Ayuda: me marca que tengo que tener al menos 2 botones de radio, pero tengo 4 botones. No veo donde esta el error, ayuda.

   **Your code so far**
/* file: index.html */
<!doctype html>
<html>
<head>
 <link rel="stylesheet" type="text/css" href="styles.css">
<title>Formulario de encuesta FreeCodeCamp</title>
</head>
<body>
 <h1 id="title">Formulario de encuesta</h1>
<p id="description">Gracias por tomarse el tiempo para ayudarnos a mejorar la plataforma</p>
<form id="survey-form">
 <fieldset>
   <label id="name-label">Nombre<input id="name" placeholder="me llamo" name="name" id="name" type="text" required/>
   </label>
   <label id="email-label">Correo electrónico<input name="email" type="email" id="email" placeholder="@" required/>
  </label>
  <label id="number-label">Edad<input name="age" type="number" min="18" placeholder="años" max="100" id="number"/>
  </label>

</fieldset
<fieldset>
  <label>¿Qué opción describe mejor su función actual?
    <select id="dropdown">
      <option value="">(selecione una opcion)</option>
      <option value="1">Estudiante</option>
      <option value="2">Pasante</option>
      <option value="3">Otro</option>
      </select>
    </label></fieldset>
    <fieldset>
    <label>Recomendaría FreeCodeCamp a un amigo?</label>
      <label><input type="radio" name="definitivamente" value="1.1 "class="inline">Definitivamente</label>
      <label><input type="radio" value="1.2" name="probablemente" class="inline">Probablemente</label><label><input type="radio" value="1.3" name="Tal vez" class="inline">Tal vez</label>
   <label><input type="radio" value="1.4" name="Despues" class="inline">No estoy seguro</label>
   
   </fieldset>
 <fieldset>
   <label>¿Qué te gustaría ver mejorado?</label>
   <Label><input type="checkbox" class="inline" name="mejora 1" value="1">Fotos</label>
<label><input type="checkbox" name="mejora 2" class="inline" value="2">Videos</label>
<label><input type="checkbox" name="mejora 3" class="inline" value=" 3">Publicidad</label>
<label><input type="checkbox" name="mejora 4" class="inline" value="4">Cursos</label>
</fieldset
<fieldset>
<label>Sugerencias y comentarios:<textarea row="6" cols="60" placeholder="yo pienso que..."></textarea></label>
  </fieldset> 
  <input type="submit" name="enviar" id="submit">
 </form
 </body>
 </html>
/* file: styles.css */
body{
 font-family: Arial;
 font-size: 15px;
 heigth: 100vh;
 width: 100%;
 backgroud-color:;
 margin: 0auto;
 color: 

}
label{
 display:block;
 margin: 0.3rem 0;
}
h1, p{
 margin: 1em auto;
 text-align: center;
}
form{
 margin: 0.5em auto;
 max-width: 500px;
 min-width: 300px;
 padding-bottom: 2em;

}
fieldset{
 border-bottom: 2px solid rgb(90, 200, 140)
 padding-bottom: 2rem;
 padding-top: 1rem;
 padding-left: 0.5 auto;
 padding-rigth: 0.5 auto;
}
input, textarea, select{
 margin-top:8px
 width: 100%;

}
inline{
 width: unset;
	margin-left: 0;
	margin-right: 0.5em;
	margin-top: 0;
	margin-bottom: 0;
	vertical-align: middle;
}
input[type="submit"]{
 	display: block;
	width: 60%;
	margin: 0 auto;
	height: 2em;
	font-size: 1.1rem;
	background-color:;
	border-color: white;
	margin-top: 1em;
	margin-bottom: 1em;
	min-width: 300px;

}
textarea{
 display: block;
	width: 60%;
	margin: 0 auto;
	height: 2em;
	font-size: 1.1rem;
}
   **Your browser information:**

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

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

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