Tell us what’s happening:
Por qué no está renderizando el código, si he incluído los elementos, siguiendo el syllabus?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Formulario de encuesta de freeCodeCamp</tilte>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1 id="title"> Formulario de encuesta de freeCodeCamp</h1>
<p id="description"> Gracias por tomarte el tiempo para ayudarnos a mejorar la plataforma.
</p>
<form id="survey-form">
<label id="name-label" for="name"> Nombre <input id="name" type="text" placeholder="Escribe tu nombre."></label>
<label id="email-label" for="email">Email <input id="email" type="email" placeholder="Escribe tu email."></label>
<label id="number-label" for="number">Edad <input id="number" type="number" min="13" max="130" placeholder="Escribe tu edad."></label>
<select id="dropdown">
<option></option>
<option></option>
</select>
<fieldset>
<legend>FreeCode camp es una buena plataforma?
<label for="sí">
<input id="sí" type="radio" name="option" value="sí"> Sí
</label>
<label for="no">
<input id="no" type="radio" name="option" value="no"> No
</label>
</legend>
</fieldset>
<fieldset>
<legend>¿Qué le gustaría que se mejorara? (Marque todas las opciones que correspondan).
</legend>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
<label for="">
<input type="checkbox" value="">
</label>
</fieldset>
<fieldset>
<legend> ¿Algún comentario o sugerencia?</legend>
<textarea placeholder=" Escribe aquí tu comentario o sugerencias...">
</fieldset>
<input id="submit" type="submit" value="Submit">
</form>
</body>
</html>
/* file: styles.css */
body{
background-color:green;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form