44
55<!-- {{<objectives>}}>-->
66
7- - [ ] Interpret requirements and check against a list of criteria
8- - [ ] Write a valid form
7+ - [ x ] Interpret requirements and check against a list of criteria
8+ - [ x ] Write a valid form
99- [ ] Test with Devtools
1010- [ ] Refactor using Devtools
11- - [ ] Use version control by committing often and pushing regularly to GitHub
12- - [ ] Develop the habit of writing clean, well-structured, and error-free code
11+ - [ x ] Use version control by committing often and pushing regularly to GitHub
12+ - [ x ] Develop the habit of writing clean, well-structured, and error-free code
1313<!-- {{<objectives>}}>-->
1414
1515## Task
@@ -22,30 +22,30 @@ Writing that out as a series of questions to ask yourself:
2222
23231 . What is the customer's name? I must collect this data and ensure it contains at least two non-space characters.
24242 . What is the customer's email? I must make sure the email is valid. Email addresses follow a consistent pattern.
25- 3 . What colour should this T-shirt be? I must provide 3 options. How will I ensure they do not choose other colours?
25+ 3 . What color should this T-shirt be? I must provide 3 options. How will I ensure they do not choose other colours?
26264 . What size does the customer want? I must provide the following 6 options: XS, S, M, L, XL, XXL
2727
2828All fields are required.
2929Do not write a form action for this project.
3030
31- ## Acceptnce Criteria
31+ ## Acceptance Criteria
3232
3333### Developers must test their work.
3434
3535Let's write out our testable criteria. Check each one off as you complete it.
3636
37- - [ ] I have only used HTML and CSS.
38- - [ ] I have not used any JavaScript.
37+ - [ x ] I have only used HTML and CSS.
38+ - [ x ] I have not used any JavaScript.
3939
4040### HTML
4141
42- - [ ] My form is semantic HTML.
43- - [ ] All inputs have associated labels.
42+ - [ x ] My form is semantic HTML.
43+ - [ x ] All inputs have associated labels.
4444- [ ] My Lighthouse Accessibility score is 100.
45- - [ ] I require a valid name.
46- - [ ] I require a valid email.
47- - [ ] I require one colour from a defined set of 3 colours .
48- - [ ] I require one size from a defined set of 6 sizes.
45+ - [ x ] I require a valid name.
46+ - [ x ] I require a valid email.
47+ - [ x ] I require one color from a defined set of 3 colors .
48+ - [ x ] I require one size from a defined set of 6 sizes.
4949
5050### Developers must adhere to professional standards.
5151
0 commit comments