This project fetches quotes from a JSON file, displays them in randomly selected fonts, and includes a link to each trainee's GitHub profile.
- Random fonts for each quote
- Responsive design for different screen sizes
- Display of quotes with the name of the trainee
- GitHub profile link for each trainee
- HTML
- CSS
- JavaScript
- Google Fonts
- JSON
- The application fetches data from a
trainees.json
file. - Each trainee's quote and name are displayed in a randomly chosen font.
- A GitHub link is provided for each trainee.
- The layout adjusts responsively for different screen sizes.
- Clone the repository:
git clone https://github.com/your-username/quotes-display.git
- Add a
trainees.json
file in the root folder with the following structure:[ { "name": "Trainee Name", "quote": "This is a trainee's quote.", "github": "https://github.com/trainee" }, { "name": "Another Trainee", "quote": "Another quote from a trainee.", "github": "https://github.com/anothertrainee" } ]
- Open
index.html
in your browser to view the project.