Tell us what’s happening:
Describe your issue in detail here.
Your code so far
/* file: index.Ext.html */
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>Survey Form</title>
</head>
<body bgcolor="black" text="yellow">
<h1 id="title" align="center">Survey Form</h1>
<p id="description">This is my certification project.Kindly enter the details as it will help us to know about changes we can bring.</p>
<form id="survey-form">
<label id="name-label">Enter Your Name:<input type="text" id="name" placeholder="Enter Your Name" required /></label>
<hr>
<label id="email-label">Enter Your Email:<input type="email" id="email" placeholder="Enter Your Email" required /></label>
<hr>
<label id="number-label">Enter Your Age:<input type="number" id="number" min="1" max="90" placeholder="Enter Your Age" required /></label><br>
<hr>
What would you advice us to improve?<select id="dropdown" required >
<option>Artificial Intelligence (AI)</option>
<option>Data Visualization </option>
<option>other</option>
</select>
<hr>
What are your qualifications:<br>
<input type="radio" name="q1" value="10" checked>10th Pass
<input type="radio" name="q1" value="12">12th Pass<br>
<hr>
Which is your optional subject:<br>
<input type="checkbox" name="c1" value="IT">Information Technology (IT)<br>
<input type="checkbox" name="c1" value="CS">Computer Science (CS)
<hr>
Let Us Know What you think:(Optional)
<input type="textarea" placeholder="Comments"><br><br>
<input type="submit">
</form>
</body>
</html>
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
Tell us what’s happening:
Describe your issue in detail here.
Your code so far
/* file: index.Ext.html */
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>Survey Form</title>
</head>
<body bgcolor="black" text="yellow">
<h1 id="title" align="center">Survey Form</h1>
<p id="description">This is my certification project.Kindly enter the details as it will help us to know about changes we can bring.</p>
<form id="survey-form">
<label id="name-label">Enter Your Name:<input type="text" id="name" placeholder="Enter Your Name" required /></label>
<hr>
<label id="email-label">Enter Your Email:<input type="email" id="email" placeholder="Enter Your Email" required /></label>
<hr>
<label id="number-label">Enter Your Age:<input type="number" id="number" min="1" max="90" placeholder="Enter Your Age" required /></label><br>
<hr>
What would you advice us to improve?<select id="dropdown" required >
<option>Artificial Intelligence (AI)</option>
<option>Data Visualization </option>
<option>other</option>
</select>
<hr>
What are your qualifications:<br>
<input type="radio" name="q1" value="10" checked>10th Pass
<input type="radio" name="q1" value="12">12th Pass<br>
<hr>
Which is your optional subject:<br>
<input type="checkbox" name="c1" value="IT">Information Technology (IT)<br>
<input type="checkbox" name="c1" value="CS">Computer Science (CS)
<hr>
Let Us Know What you think:(Optional)
<input type="textarea" placeholder="Comments"><br><br>
<input type="submit">
</form>
</body>
</html>
/* file: styles.Ext.css */
Your mobile information:
RMX3868 - Android 15 - Android SDK 35
Challenge: Survey Form - Build a Survey Form
Link to the challenge:
Its showing to add textarea as a descendant of #survey-form. What do I do
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!