Hi. Can you please please put 3 backticks before and after your code. You will need to post all your html and css. Can you also link to any challenge that you are doing.
<link rel="stylesheet" href="styles.css">
<h1 id="title">Music Program Sign Up </h1>
<p id="description">Here you will find thesign up sheet for the music class. </p>
<form id="survey-form">
<label id="name-label"></label>
<input id="name" type ="name" required placeholder="Name" name ="name" required>Name</input>
<label ="email-label" id="email-label"></label>
<input id="email" type ="email" required placeholder="Email" name ="email" required>Email</input>
<label id="number"></label>
<input id="number" type ="number" required placeholder="Number" name ="number" required>Number</input>
<label id="dropdown">Your destiny</label>
<select id="dropdown">
<option>Freedom</option>
<option>Pain</option>
<option>Millionare</option>
<option>Billionare</option>
</select>
<input type="radio" id="html" name="fav_music" value="metal">
<label for="metal">Metal</label>
<input type="radio" id="html" name="fav_music" value="blues">
<label for="blues">Blues</label>
<input type="radio" id="blues" name="fav_music" value="blues">
<label>For questions</label>
<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
<input type="checkbox" id="vehicle2" name="vehicle2" value="Car">
<label for="vehicle2"> I have a car</label><br>
<input type="checkbox" id="vehicle3" name="vehicle3" value="Boat">
<label for="vehicle3"> I have a boat</label><br><br>
<label for="comment">Leave your review.</label>
<textarea id="comments" name="comments" rows="4" cols="50">Leave your comments.
</textarea>
Here is my code . I 'm sorry for the errors.
///</form>
<input type ="submit" value="Submit">///
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.
It’s the curriculum. I have everything right Hower the X’s won’t turn to checks.
You can see the errors at the bottom that still show up . I think i have everything done correctly.
14. You should have an input element with an id of number .
16. Your #number should have a type of number .
17. Your #number should have a min attribute with a numeric value.
18. Your #number should have a max attribute with a numeric value.
21. You should have a label element with an id of number-label .
22. Your #name-label should contain text that describes the input.
23. Your #email-label should contain text that describes the input.
24. Your #number-label should contain text that describes the input.
27. Your #number-label should be a descendant of #survey-form .
30. Your #number should have a placeholder attribute and value.
31. You should have a select field with an id of dropdown.
42. You should have an input or button element with an id of submit .
43. Your #submit should have a type of submit .
44. Your #submit should be a descendant of #survey-form .
The syntax on your input elements is wrong. It is self-closing like this:
<input>
… with attributes included after “input” as required. I’ve read that it still works as you have written it though so it may not be an issue.
No. 14 - your id attribute needs to be unique to the html. You have more than 1 attribute with the id value of number. Remove all others except for t he one in the input element.
No. 16 - no space next to your = sign on the attribute for type.
No. 17 & 18 - you don’t have a min and max attribute on your input for “number” id.
No. 21 - you haven’t done an id attribute on your label to your number input. You have no attributes on your label.
No. 22 - you have no text within your label element (id - name-label). It needs to describe the input.
No. 23 - same as above - but for email label, likewise No. 24 for number label.
No. 30 - your placeholder seems to be ok, the issue may be your non-unique id for number as noted above.
No. 31 - you have 2 id’s for dropdown, so no longer unique and not recognised. Delete all others except for the one on the select opening tag.
No. 42 - you don’t have an id attribute of submit.
no. 43 - this should be ok. Try removing the space before your = sign.
No. 44 - your form closing tag should be after your submit. This was possibly the issue also with no. 27