Just finished my second project. Decided to do make the survey form for my GF who’s a personal trainer. Something people might fill out before booking classes.
Any criticisms welcome.
Just finished my second project. Decided to do make the survey form for my GF who’s a personal trainer. Something people might fill out before booking classes.
Any criticisms welcome.
This looks great @StevenTempered! It looks like an actual survey page.
One thing I caught in your code. In the section “what type are you interested in?”
the checkboxes Reformer, Boxing, Strength & conditioning, Mobility, and spin all have the same <input value="reformer">
. There’s also a typo on Strength.
Hey Steven,
great job so far!
My ideas:
all tests pass, awesome!
you can get a code validation:
you can increase the readability of your code by:
Format HTML/CSS
you can increase the overall readability of your page by adding some more spacing, e.g. between the different checkboxes; I would also try to increase the padding around the answer placeholders; you can read more about it in principles of design
I think the Serif font doesn’t fit the aura of the page; I would try to find a Sans-Serif font, would be more modern.
Keep up the great work,
looking forward to seeing your next steps!
Your form looks good @StevenTempered. Something to revisit;
<br>
element to force line breaks or spacing. That’s what CSS is for.Good catch, looks like I was a bit trigger happy with the copy/paste.
Thanks miku, I was thinking I could have spent a bit more time on the finer design points. I’ll go back and have a look now.
Thanks, I picked this up from another survey form I was looking at, wasn’t sure if it was best practice. Good to know.