Latest comments
- @samuel-aduSubmitted 7 months ago
- P@danmlarsenSubmitted 7 months agoWhat specific areas of your project would you like help with?
I appreciate any helpful feedback.
- P@aneiquSubmitted 9 months ago
- @SeyrenZSubmitted about 1 year ago
- @javiIT10Submitted 8 months ago
- @javiIT10Submitted 8 months ago@mofadaPosted 8 months ago
First of all, congratulations on completing the challenge.
Let me talk about my opinion on your code, of course, this is only my personal opinion.
First of all, from the page, compared with Solution and Design, your background color seems to be wrong, and some small details are not restored enough.
Secondly, in terms of HTML code, you directly use the
H2
tag. Normally, you should start with H1 instead of using H2 directly. Input and Label are used correctly, but radio group recommends usingfieldset
andlegend
to implement it.Then, in terms of input validation, you can use HTML's
required
to perform validation and reduce js code.<input type="text" id="firstName" name="firstName" class="input" required />
Using HTML's own validation can reduce your code0