No, those labels are still wrong, they shouldn't be right the way around the form elements. Where you have
Code:
<label for="Name">Name
<input type="text" name="Name" id="Name" />
</label>
it should be
Code:
<label for="Name">Name</label>
<input type="text" name="Name" id="Name" />
EDIT: See
HTML label tag and also don't double post.