You left out the id attributes in the input and textarea fields that the for attributes in the label tags are referring to.
Code:
<label for="name" class="fontcolor">Your Name*</label>
<br><br>
<input type="text" id="name" placeholder="John Doe" required />
<br><br>