├── README.md ├── random_quote_generator └── index.html └── enhanced_quote_generator └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Random_quote_generator 2 | A simple web app that displays random motivational quotes. Built using **HTML, CSS, and JavaScript**, this project provides a fun way to get inspired. 3 | 4 | ## Features 5 | 💡 Generates a new quote on button click 6 | 💡 Simple and elegant UI 7 | 💡 Randomized selection from a list of quotes 8 | 9 | ## How to Use 10 | 1. Clone or download this repository. 11 | 2. Open the `index.html` file in your browser. 12 | 3. Click the "New Quote" button to generate a random motivational quote. 13 | 14 | ## Technologies Used 15 | - HTML 16 | - CSS 17 | - JavaScript 18 | 19 | ## Contributing 20 | Enhancements you can add: 21 | 🚀 More quotes from an external API 22 | 🚀 Option to copy quotes to the clipboard 23 | 🚀 Animated transitions 24 | -------------------------------------------------------------------------------- /random_quote_generator/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Random Quote Generator 7 | 33 | 34 | 35 |
36 |

Random Quote Generator

37 |

Click the button to generate a quote.

38 | 39 |
40 | 54 | 55 | -------------------------------------------------------------------------------- /enhanced_quote_generator/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Random Quote Generator 7 | 59 | 60 | 61 |
62 |

✨ Inspirational Quote ✨

63 |

Click the button to generate a quote.

64 | 65 |
66 | 85 | 86 | --------------------------------------------------------------------------------