Skip to content

Commit 9238df1

Browse files
Alex JamshidiAlex Jamshidi
authored andcommitted
Updated all completed objectives, tidied comments
1 parent 6c1e266 commit 9238df1

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Form-Controls/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Let's write out our testable criteria. Check each one off as you complete it.
4141

4242
- [x] My form is semantic HTML.
4343
- [x] All inputs have associated labels.
44-
- [ ] My Lighthouse Accessibility score is 100.
44+
- [x] My Lighthouse Accessibility score is 100.
4545
- [x] I require a valid name.
4646
- [x] I require a valid email.
4747
- [x] I require one colour from a defined set of 3 colours.
@@ -54,10 +54,10 @@ 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
6363
- [MDN: Form controls](https://developer.mozilla.org/en-US/docs/Learn/Forms)

Form-Controls/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h1>Product Pick</h1>
2727
</div>
2828
<br>
2929

30-
<!-- Color select (radio buttons/dropdown) - requires 3 options, 1 pick -->
30+
<!-- Color Select -->
3131
<div>
3232
<label for="colour">Colour</label>
3333
</div>
@@ -41,7 +41,7 @@ <h1>Product Pick</h1>
4141
</div>
4242
<br>
4343

44-
<!-- Size select (dropdown) - requires 6 options: XS, S, M, L, XL, XXL -->
44+
<!-- Size Select -->
4545
<div>
4646
<label for="size">Size</label>
4747
<select name="size" id="size" required>

0 commit comments

Comments
 (0)