</style>
</head>
<body>
<h1 id="title">Customer Review</h1>
<p id="description"> We appreciate your participation in our industry. Please take the survey and leave a remark below to help with future improvement. </p>
<form id="survey-form" method="get">
<fieldset>
<label id="name-label">First Name:
<input id="name" type="text" placeholder="Enter Your First Name" required>
</label>
<label for="lastname">Last Name:
<input id="name" type="text" placeholder="Enter Your Last Name" required>
</label>
<label id="email-label">Email:
<input id="email" type="email" placeholder="Enter your Email" required>
</label>
<label id="number-label">Age(optional):
<input id="number" type="number" placeholder="Enter Your Age" min="10" max="100">
</label>
</fieldset>
<fieldset>
<label>Do you use skincare products?
<select id="dropdown">
<option>Yes</option>
<option>No</option>
</select>
</label>
<label >Is having good skin important to you?
<input type="radio" name="Yes" value="yes" class="inline">Yes</input>
<input type="radio" name="no" value="no" class="inline">No</input>
<input type="radio" name="None of above" value="none" class="inline">None of above</input>
</label>
<label>Which, if any of the following statements applies to you?
<input type="checkbox" value="option" class="inline">I have oily skin</input>
<input type="checkbox" value="option" class="inline">I have dry and dull skin</input>
<input type="checkbox" value="option" class="inline">I have suffered redness and sensitivity</input>
<input type="checkbox" value="option" class="inline">I have acne</input>
<input type="checkbox" value="option" class="inline">I have wrinkles</input>
</label>
<label>Give us feedback?
<textarea cols="40" rows="5"></textarea>
</label>
</fieldset>
<input id="submit" type="submit">
</form>
</body>
</html>
hello guys, I was trying to make radio and checkbox on the same line with the given option. I need suggestions on how to make it?
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
You should have same name attribute "value" for a group of input type="radio.
Also you have a separate css file in the project editor for styling your html elements. Move your all css styling to that file and create <link rel="stylesheet href="styles.css> element between head opening and closing tags. @subashchhetri946
hey , sorry but this didn’t work . after changing and running the test, still showing that “Every radio button group should have at least 2 radio buttons.”