Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 2.16 KB

README.md

File metadata and controls

45 lines (30 loc) · 2.16 KB

Dog Catalog Accessibility Exercise

Project Overview

This project is a front-end-only React application where you can manage a catalog of dogs. The application includes the following pages:

  1. Catalog Page: Displays cards with dogs. Each card contains the dog’s name and picture.
  2. Manage Page: Allows you to add new dogs to the catalog.
  3. About Page: Contains useful links for this exercise.

Instructions for Building and Running the Application`

  1. Install dependencies:

    npm install
  2. Run the application:

    npm start
  3. The app should now be running on http://localhost:3000.

Accessibility Guidelines

The main goal of this exercise is to make the application accessible according to WCAG 2.2 standards.

The points you need to fix in this exercise relate to Links, Lists, Headings, ARIA, Alternative Text, Colors, Forms, Navigation, and Font Size.

You can use the following useful links to help guide your fixes:

Good luck!