HELLP!! I’m having problems adding the question first before the radio buttons, i think i have the right code but it won’t appear on my preview… (im abt to cry )
Matcha SurveyMatcha Survey
Thank you for doing this survey! I love you Matcha!
<div id="form-styling">
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name"> Name
<input
id="name"
name="name"
type="text"
placeholder="Enter your name"
required/>
</label>
</div>
<div class="form-group">
<label id="email-label" for="email">Email
<input
id="email"
name="email"
type="email"
placeholder="Enter your email"
required />
</label>
</div>
<div class="form-group">
<label id="number-label" for="number">Age
<input
id="number"
name="age"
type="number"
placeholder="Age"
min="13"
max="100"
required/ ></label>
</div>
<div class="form-group">
<label for="dropdown">What is your favorite Matcha grade?
<select id="dropdown" name="grade">
<option value="">(Select an option)</option>
<option value="1">Ceremonial Grade</option>
<option value="2">Culinary Grade</option>
</label>
</div>
<div class="form-group">
***<!--NEED HELP: RADIO BUTTON QUESTON WON'T APPEAR-->***
</div>
<div class="form-group">
<label>How often in a week do you drink Matcha?</label>
<input
name="radio"
value="1-2"
type="radio"
class="input-radio"
checked
/>1-2 times /week</label
>
<label>
<input
name="radio"
value="3-5"
type="radio"
class="input-radio"
/>3-5 times /week</label
>
<label
><input
name="radio"
value="everyday"
type="radio"
class="input-radio"
/>Everyday! Matcha is LIFE!</label
>
</div>
</input>
</div>
Blockquote