Tell us what’s happening:
i am now stuck on this one! can anyone help me with this hint?
You should have at least two input elements with a type of checkbox (checkboxes) that are descendants of #survey-form
Your code so far
<!-- file: index.html -->
<h1 id="title"> Carly's Survey</h1>
<p id="description">Thank you for taking the time to improve our platform</p>
<fieldset>
<form id="survey-form">
<label id="name-label">Full Name:
<input id="name" type="text" value="full-name" required placeholder="Please insert your name"/></label>
<label id="email-label">Enter your email:
<input id="email" type="email" value:"curly@clark.com" placeholder="Please insert your email" required></label>
<label id="number-label">Age:<input id="number" type="number" placeholder="Please insert age"min="16" max="120"></label>
<label>Where did you hear about Carly's Survey?
<select id="dropdown">
<option value="">Select a subject</option>
<option value="1">Carly's website</option>
<option value="2">Word of mouth</option>
<option value="3">TikTok</option>
<option value="4">Instagram</option>
<option value="5">Twitter</option>
<option value="6">Facebook</option>
<option value="7">Other</option>
</fieldset>
<fieldset>
<label>How likely are you to Recommend our products</label>
<label>Definitely<input type="radio" name="button" value="button">
<label>Most likely<input type="radio" name="button" value="button">
<label>Likely<input type="radio" name="button" value="button">
<label>Not at all<input type="radio" name="button" value="button"></label>
</fieldset>
<fieldset>
<label>What other places are you most likely to shop?</label>
<label><type input="checkbox" value="PrettyLittleThing"> PrettyLittleThing</label>
<label><type input="checkbox" value="Boohoo"> Boohoo</label>
<label><type input="checkbox" value="ASOS"> ASOS</label>
<label><type input="checkbox" value="Other"> Other</label>
</fieldset>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
i can’t seem to copy and paste my code within this textbox so cant show the updated version. is there any other errors I’ve made?
also regarding this hint I’m stuck on, can you give me any tips on this?
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.