Skip to content

Commit

Permalink
Update checklist.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrinko authored Sep 15, 2023
1 parent 66971dd commit aeae3f8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions checklist.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
1. Use logo as a favicon
2. Use landing name as a page title
1. Use the logo as a favicon
2. Use the landing name as a page title
3. All logos should be links to the top of the page
4. Change text color on hover for phone, email and address
5. Make sure phone icons and phone numbers are real link to start a call
6. All addresses should be links to some location on Google Maps. Open then in a new tab with `target="_blank"`.
4. Change text color on hover for phone, email, and address
5. Make sure phone icons and phone numbers are real links to start a call
6. All addresses should be links to some location on Google Maps. Open them in a new tab with `target="_blank"`.
7. Increase all images on hover (make them links to #, if there is no better option)
8. Make sure everything looks neat on mobile and without horizontal scrolling
9. The speed of animations should be the same throughout the page (for example, increasing when hovering or moving blocks when scrolling)
Expand All @@ -27,9 +27,9 @@
}
```
13. All form fields should be required and have correct types (`email`, `tel`, etc.)
14. Placeholders should give exaples of what should be added, to make the expected format clear
15. Page shouldn't be reloaded on form submit, but the fields should be cleared. Use:
14. Placeholders should give examples of what should be added, to make the expected format clear
15. The page shouldn't be reloaded on form submit, but the fields should be cleared. Use:
```html
<form onsubmit="this.reset(); return false;">
```
16. Make `footer` sticky at the bottom with `z-index: -1` to get fixed background effect.
16. Make the `footer` sticky at the bottom with `z-index: -1` to get a `fixed` background effect.

0 comments on commit aeae3f8

Please sign in to comment.