Tell us what’s happening:
Describe your issue in detail here
i am supposed to have two input elements with radio buttons but I don’t know how to do that
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang='eng'>
<head>
<h1 id='title'>Page</h1>
</head>
<body>
<p id='description'>This is my description</p>
</body>
<form id='survey-form'>
<label for='name' id='name-label'><input required id='name' type='text' placeholder='enter name '>Name</input></label>
<label for='email' id='email-label'> <input id='email' required type='email' placeholder='enter email'>Email</label>
<label id='number-label' for='number'> <input id='number' min='18' max='60' type='number' placeholder='choose'>Age</label>
<fiedset>
<select id='dropdown'>
<option value='Female'>Female</option>
<option value='Male'>Male</option>
</select>
</fieldset>
</form>
</html>
/* file: styles.css */
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/17.2.1 Safari/605.1.15
Challenge Information:
Survey Form - Build a Survey Form