Tell us what’s happening:
The challenge is telling me that I need to add a textarea but I already did. I thought.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<head>
<link rel="stylesheet"
href="styles.css">
</head>
<body>
<h1 id="title">Survey Form</h1>
<p id="description">Thank you for your help.</p>
<form id="survey-form">
<label id="name-label">name</label>
<input placeholder="enter your name" required id="name" type="text"></input>
<label id="email-label">email</label>
<input placeholder="enter your email" required id="email" type="email"></input>
<input placeholder="age" id="number" type="number" min="0" max="20"></input>
<label id="number-label">age</label>
<select id="dropdown">
<option>1</option>
<option>2</option>
</select>
<input value="test 1" name="test"type="radio"/>
<input value="test 2" name="test"type="radio"/>
<input value="one" type="checkbox"/>
<input value="two" type="checkbox"/>
<input value="three" type="checkbox"/>
<input type="textarea" placeholder="comment"/>
<input id="submit" type="submit"/>
</form>
</body>
/* 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/125.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form