Survey Form feedback requested

Hello,

Here is my Survey Form project.

Thanks,

Kellie

Why are you using label twice for each input field like in here:

		<label id="name-label">* Name</label> <!-- user story 11 -->
		<div>
			<label for="name"></label> <input id="name" maxlength="100" placeholder="First Last" required="" type="text">
		</div>

Think just:

		<label id="name-label" for="name">* Name</label> <!-- user story 11 -->
		<div>
			<input id="name" maxlength="100" placeholder="First Last" required="" type="text">
		</div>

will be enough.

Otherwise, seems ok. Maybe opting for a nicer font will improve your design.

Happy coding