Build a Survey Form Project - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
Please someone help me out here, it is telling me to put the radio button in the option element
Your code so far

/* file: index.Ext.html */



<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title></title>
  </head>
  <body>
<h1 id="title">Portfolio</h1>
<p id="description">Welcome to my world</p>
<form id="survey-form">
<input id="name" type="text" required placeholder="Enter your Name">
<input id="email" type="email" required placeholder="Enter your Email">
<input id="number" type="number" min="0" max="10" required placeholder="Enter your Number">
<label id="name-label">Name:</label>
<label id="email-label">Email:</label>
<label id="number-label">Number:</label>
<select id="dropdown">
<option></option>
<option></option>
<input type="radio" name="steal" value="Steal">
<input type="radio" name="steal" value="Kidnap">

</select>
</form>
</body>
</html>






    


    

/* file: styles.Ext.css */



<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title></title>
  </head>
  <body>
<h1 id="title">Portfolio</h1>
<p id="description">Welcome to my world</p>
<form id="survey-form">
<input id="name" type="text" required placeholder="Enter your Name">
<input id="email" type="email" required placeholder="Enter your Email">
<input id="number" type="number" min="0" max="10" required placeholder="Enter your Number">
<label id="name-label">Name:</label>
<label id="email-label">Email:</label>
<label id="number-label">Number:</label>
<select id="dropdown">
<option></option>
<option></option>
<input type="radio" name="steal" value="Steal">
<input type="radio" name="steal" value="Kidnap">

</select>
</form>
</body>
</html>






    


    

Your mobile information:

CPH1911 - Android 9 - Android SDK 28

Challenge: Build a Survey Form Project - Build a Survey Form

Link to the challenge:

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!

you should have a two inputs type checkbox,textarea,and input type submit in your form

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.