Skip to content

Commit 40fc1b1

Browse files
committed
Check every criteria
1 parent baad5ba commit 40fc1b1

1 file changed

Lines changed: 20 additions & 19 deletions

File tree

Form-Controls/README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
<!--{{<objectives>}}>-->
66

7-
- [ ] Interpret requirements and check against a list of criteria
8-
- [ ] Write a valid form
9-
- [ ] Test with Devtools
10-
- [ ] 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
7+
- [x] Interpret requirements and check against a list of criteria
8+
- [x] Write a valid form
9+
- [x] Test with Devtools
10+
- [x] Refactor using Devtools
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
@@ -34,18 +34,18 @@ Do not write a form action for this project.
3434

3535
Let'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.
44-
- [ ] 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.
42+
- [x] My form is semantic HTML.
43+
- [x] All inputs have associated labels.
44+
- [x] My Lighthouse Accessibility score is 100.
45+
- [x] I require a valid name.
46+
- [x] I require a valid email.
47+
- [x] I require one colour from a defined set of 3 colours.
48+
- [x] I require one size from a defined set of 6 sizes.
4949

5050
### Developers must adhere to professional standards.
5151

@@ -54,12 +54,13 @@ Let's write out our testable criteria. Check each one off as you complete it.
5454
These practices reflect the level of quality expected in professional work.
5555
They ensure your code is reliable, maintainable, and presents a polished, credible experience to users.
5656

57-
- [ ] My HTML code has no errors or warnings when validated using https://validator.w3.org/
58-
- [ ] My code is consistently formatted
59-
- [ ] My page content is free of typos and grammatical mistakes
60-
- [ ] I commit often and push regularly to GitHub
57+
- [x] My HTML code has no errors or warnings when validated using https://validator.w3.org/
58+
- [x] My code is consistently formatted
59+
- [x] My page content is free of typos and grammatical mistakes
60+
- [x] I commit often and push regularly to GitHub
6161

6262
## Resources
63+
6364
- [MDN: Form controls](https://developer.mozilla.org/en-US/docs/Learn/Forms)
6465
- [MDN: Form validation](https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation)
6566
- [Lighthouse](https://developers.google.com/web/tools/lighthouse)

0 commit comments

Comments
 (0)