Survey Form - Build a Survey Form - Run the Tests

Tell us what’s happening: I can save my work but nothing happens when I press “Run the Tests”
I have completed the Survey Form I believe but do not get any feedback when I press the button “Run the Tests”. I am not sure what I have done wrong.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>Survey Form</title>
   <link rel="stylesheet" href="styles.css">
 </head>
 <body>
   <header>
     <h1 id="title">The 3W Traveler Survey</h1>
     <p id="description">Please fill out this form completely</p>
   </header>
 <main>
   <form id="survey-form">
   <fieldset>  
     <label for="name" id="name-label">Please enter your name: </label>
     <input id="name" type="text" required placeholder="Name">
     <label for="email" id="email-label">Please enter your e-mail address: </label>
     <input id="email" type="email" required placeholder="E-mail">
     <label for="number" id="number-label">Please enter your age: </label>
     <input id="number" type="number" required min="13" max="90" placeholder="Age">
   </fieldset>
   <fieldset> 
     <label for="dropdown">How do you know The 3W Travelers: </label>
     <select id="dropdown"> 
       <option>Family </option>
       <option>Friend </option>
       <option>New to blog </option>
     </select>
   </fieldset>
   <fieldset>
     <label>Who do you know: </label>
     <input type="radio" name="radio-group" id="todd" value="0">
     <label for="todd">Todd</label>
     <input type="radio" name="radio-group" id="melanie" value="1">
     <label for="melanie">Melanie</label>
     <input type="radio" name="radio-group" id="paige" value="0">
     <label for="paige">Paige</label>
   </fieldset>
   <fieldset>
     <label>What do you want to see more of? </label>
     <input type="checkbox" value="0" id="pictures">
     <label for="pictures">Pictures </label>
     <input type="checkbox" value="1" id="history">
     <label for="history">History of area </label>
     <input type="checkbox" value="2" id="whats-next">
     <label for="whats-next">What comes next </label>
   </fieldset>
   <fieldset>
     <textarea rows= "3" cols="30" placeholder= "Please enter additional feedback here: "></textarea>
   </fieldset>
     <input id="submit" type="submit">
   
     </form>
   </main>
 </body>
</html>
/* file: styles.css */
font-family {san-serif}
body {background-color: rgb(70, 200, 210)}
h1, p {text-align: center}
main {width: 65%; margin: 10px auto; padding: 20px;}
fieldset {
 border: 3px solid #3b3b4f;
 padding: 2rem 0;
 border-bottom: 3px solid #3b3b4f;max-width: 500px;
	min-width: 300px;}
label {
 display: block;
	margin: 0.5rem 0;}
input[type="submit"] {
 display: block;
 width: 60%;
 margin: 5em auto;
 height: 2em;
 font-size: 1.1rem;
 background-color: white;
 border-color: black;
 min-width: 300px;
}  

   **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.134 Safari/537.36 Edg/103.0.1264.71

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

what do you mean? what do you expect? what’s happening instead?

Absolutely nothing. There seems to be no response. I get a notification at the top of my screen when I save my information but nothing happens when I press the Run the Tests button.

the tests below don’t change the icon to show which ones pass and which ones don’t?

No, the tests do not change to show that anything has passed or not. Everything just stays the same.

try to reload the page and try again, it works. There is something on your side blocking it from working.

I need to apologize, I had my popup blocker enable and it would not let things proceed. Man, I feel bad. Thanks for your quick response! You rock!

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