label tag used to label something so proper syntax is
<form action="url" method="post or get">
<label for="firstName"> first name : </label>
<input type="text" name="fname" placeholder="your placeholder">
// your other code
</form>
so in above example or syntax, i am giving my first name as lable
that is not the issue and not even subject of the challenge. In fact the said syntax is part of the challenge code and not made by the user. Its common practic to nest inputs elements inside their label tags and skip the for attribute, even if not so syntactically correct.
@joshuabethat144000 the issue lays in how you wrote your class. Look inside the .thick-green-border body. There are some syntax errors you made. Look up on other classes above it, maybe you will notice how they are wtitten in the correct manner
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. As @Sylvant did.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.