Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
I am trying to run the test, but they seem to not be running

Your code so far

<!-- file: index.html -->

<!DOCTYPE html>
<head>
<link rel="stylesheet" href="styles.css">
<h1 id="title">My test form page.</h1>
<p id="description">This is a test of my skills, building a form with input</p>
</head>
<form id="survey-form">
  <label id="name-label">Name:  </label></br>
  <input id="name"  
         type="text"
         required="required"> 
  </input></br></br>


  <label id="email-label">E-Mail:  </label></br>
  <input  id="email" 
          type="email"
          required="required">
  </input></br></br>


  <label id="number-label">Number:  </label></br>
  <input type="tel" 
      name="number" 
      pattern="[0-9\.]+" 
      required="required">
  </input></br></br></br>
  
  
  <select id="dropdown">
    <option value="Option1">Option 1</option>
    <option value="Option2">Option 2</option>
   </select></br></br>
   <label>Checkbox 1</label>
   <input type="checkbox" value="Option 1"></input></br></br>
   <label>Checkbox 2</label>
   <input type="checkbox" value="Option 1"></input></br></br>
   <label>Additional Comments:  </label></br>
   <textarea id="text-area" rows="5" colums="33"></textarea>
  </br>
  </br>
  <input type="submit" id="Submit"></input>

</form>
/* file: styles.css */

Your browser information:

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

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

HI @HarleyTX !

Welcome to the forum!

I copied the code you had in the code block and tests were running for me.
It looks like you are passing half of the tests

Mine just shows the White Circles.

Ok, I was using chrome, it didn’t like it

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