Tell us what’s happening:
Describe your issue in detail her
<!-- file: index.html -->
<!DOCTYPE html>
<html>
<head>
<h1>
<title id="title">Survey form</title>
</h1>
<p id="description">Thank you for taking your time to feel the required details</p>
<link href="survey.css" rel="surveysheet">
</head>
<body>
<form id="survey-form">
<label for="name" id="name-label" type="checkbox">Your name:<input type="text" id="name"></label>
<label for="email" id="email-label" type="checkbox">Your email:<input type="email" id="email" placeholder="text" required></label>
<label for="number" id="number-label">Your number:<input id="number" type="number" required ></label>
<select id="dropdown" type="checkbox">
<option type="radio" name="group">personal email</option>
<option type="radio" name="group">public email</option>
</select>
</form>
</body>
</html>
/* file: styles.css */
.number{
max-block-size: 20;;
min-width: 0;
}
.email{
display:block;
color:red;
}
.description{
color
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form