Given a static design that lacks accessibility, convert the design to be responsive on different sized displays and accessible for screen reader use. You will also add a service worker to begin the process of creating a seamless offline experience for your users.
You have been provided the code for a restaurant reviews website. The code has a lot of issues. It’s barely usable on a desktop browser, much less a mobile device. It also doesn’t include any standard accessibility features, and it doesn’t work offline at all. Your job is to update the code to resolve these issues while still maintaining the included functionality.
- Font Awesome
- Google Fonts (Quicksand 300, 500, 700)
- Google Maps API
Fork this respository, then clone it to your local machine. Create a simple HTTP server using Python. Note: You do not need to know Python for this. Check your Python version before starting by running python -V
from the terminal.
- spin up the server with
python -m SimpleHTTPServer 8000
- spin up the server with
python3 -m http.server 8000
Once the server is up and running, navigate to localhost:8000
to see the app in action!
Found a bug or typo? Have a cool idea for functionality not currently in the game?
Click the Fork button in the top right
This is important because you won't be able to push your changes if you don't clone your forked repository
Clone your forked repository to your desktop by navigating to the repository, clicking the "clone or download" button, and copying the link. Then, run git clone <YOUR CLONED REPOSITORY>
Once you make your changes, be sure to commit those changes and then push them to the repository
On this repository, navigate to the "Pull Requests" tab and scroll down the page until you see the green pull request button
Once a request is submitted, I will try to review it as soon as possible. Thanks for your patience!