Tell us what’s happening:
Describe your issue in detail here.
so how do I know if the tests are going through? Im not entirely sure if I need to get everything and all the tests go ‘yep! you did it!’ but nothing seems to be changing
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<h1 id="title">Survey Form</h1>
<p id="description">This is a description about the survey form</p>
<form id="survey-form">
<fieldset>
<label id="name-label">Enter Your Name: <input required id="name" type="text" /></label>
<label id="email-label">Enter Your Email: <input required id="email" type="email"/></label>
<label id="number-label">Enter Your Age: <input required id="number" type="number" min="13" max="120"/></label>
</fieldset>
<fieldset>
<select id="dropdown">
<option>Option 1</option>
<option>Option 2</option>
</select>
</fieldset>
<input type="submit" value="Submit"/>
</form>
</body>
</html>
/* file: styles.css */
h1, p {
text-align: center;
}
fieldset {
background-color:
}
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #7b3433;
color: #e9bbba;
}
label {
display: block;
margin: 0.15rem 0;
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15
Challenge: Build a Survey Form
Link to the challenge: