Tell us what’s happening:
Describe your issue in detail here.
I’M done with the survey form and al the tests passed, but it’s not showing to go to the next project.
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SURVEY FORM</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title"> SURVEY FORM</h1>
<p id="description"> Thank you for taking the time to help us improve the platform</p>
<form id="survey-form">
<label id="name-label"> Name </label>
<input type="text" id="name" placeholder="Enter your name" required></input>
<Label id="email-label"> Email</label>
<input type="email" id="email" placeholder="Enter your mail" required></input>
<label id="number-label"> Number </label>
<input type="number" id="number" placeholder="Enter your number" min="11" max="12"></input>
<label> Which option best describes your current role?</label>
<select id="dropdown">
<option> Student </option>
<option> Employed </option>
<option> Prefer not say </option>
<option> Others </option>
</select>
<label>Would you recommend this app to a friend?</label>
<input type="radio" name="inline" Value="Inline"> Definitely</input>
<input type="radio" name="line" value="Line"> Maybe</input>
<input type="radio" name="maybe" value="Maybe">Not sure </input>
<label>Are you satisfied with our programs?</label>
<input type="radio" name="value" value="yes"> Yes</input>
<input type="radio" name="No"
value="no"> No</input>
<label> What would you like to see improved? (Check all that apply)</label>
<input type="checkbox" value="front">Front-end</input>
<input type="checkbox" value="back">Back-end</input>
<input type="checkbox" value="data">Data Visualisation</input>
<input type="checkbox" value="challenges">Challenges</input>
<input type="checkbox" value="video">Video</input>
<input type="checkbox" value="forum">Forum</input>
<label>Any comments or suggestions?
<textarea> Enter your comment here.....</textarea>
<input type="submit" id="submit">
</form>
</body>
/* file: styles.css */
#title, #description{
text-align: center;
}
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #1b1b32;
color: #f5f6f7;
font-family: Tahoma;
font-size: 16px;
}
label{
display: block;
}
input,
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
}
input, textarea {
background-color: #0a0a23;
border: 1px solid #0a0a23;
color: #ffffff;
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Challenge: Survey Form - Build a Survey Form
Link to the challenge: