Tell us what’s happening:
I don’t know how to do step 38.its too hard for me.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html>
<main>
<h1 id="title">Welcome to our servey</h1>
<p id="description">We thank you greatly for your cooperation</p>
<form id="survey-form">
<label id="name-label">enter your name
<input id="name" type="text" required placeholder="adam,uzair,etc..."> </label>
<label id="email-label">enter your email <input id="email" type="email" required placeholder="someone@gmail.com"></label>
<label id="number-label">enter your phone number <input id="number" min="10" max="20"type="number"
placeholder="number">
<label>whats your current role</label>
<select id="dropdown">
<option>your current role
<option>student
<option>worker
<option>other
</select>
<label>would you recommend this survey to anyone?</label>
<group>
<input type="radio" class="option"
value="recommend" checked
name="yes">yes
<input type="radio" class="option" value="recommend"
name="no">no
<input type="radio" class="option"
value="recommend"
name="maybe">maybe
</group>
</form>
<link rel="stylesheet" href="styles.css">
</main>
</html>
/* file: styles.css */
label,input{display:block;background-color:#72f}
input[class="option"]{display:inline;}
#survey-form{background-color:#12f;font-color:#12f}
body,html{background-color:#12f;font-color:;}
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form