Please I need help to make
Every radio button group should have at least 2 radio buttons.
Your code so far
<!-- file: index.html -->
<html>
<head>
<title>Survey Form</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<header>
<h1 id="title">My Survey Form</h1>
<p id="description">Thank you for taking time to help improve our service.</p>
</header>
<form id="survey-form" >
<select id="dropdown">
<option value="">(not disable) </option>
<option value="1">product packaging</option>
<option value="2">Product Delivery</option>
</select>
<input id="name" type="text" required placeholder="Name" />
<input id="email" type="email" required placeholder="Email" />
<input id="number" type="number" min="13" max="60" placeholder="Age" />
</fieldset>
<fieldset>Would you recommend our product to someone else?
<label id="name-label" ><input type="radio" name="name" class="inline" value="name"/>Yes</label>
<label label id="email-label" ><input type="radio" name="email" class="inline" value="email"/>No</label>
<label id="number-label" ><input type="radio" name="number" class="inline" value="number" > Not at all</label></fieldset>
<fieldset>What would you like us to improve on? (check all that apply)
<label><input type="checkbox" value="suggest" name="price" class="inline">Price of product</label>
<label><input type="checkbox" value="checboxes" name="delivery" class="inline">Delivery time</label>
<label><input type="checkbox" value="checkboxes" name="packaging" class="inline">Product packaging</label>
<label><input type="checkbox" value="checkboxes" name="customer service" class="inline">Customer service</label></fieldset>
<fieldset>
<label>Additional Comment: <textarea id="comment" name="comment" rows="3" cols="30" placeholder="Drop your comments here!" rows="3" cols="30" name="textarea"></textarea></label>
<button id="submit" type="submit" value="Submit">Submit</button>
</form>
</body>
</html>
/* 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/122.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form