This is the README file for an advice generator app. The HTML code provided represents the structure and layout of the app's user interface. I did not consider the use of media queries necessary, as the styling and structure of the page can be sufficiently responsive with CSS.
To use the app, simply open the HTML file in a web browser. The app will display a random piece of advice each time the user clicks the "Generator Advice" button.
The app relies on the following files and resources:
main.css
: This stylesheet file, located in thecss
folder, provides the app's styling.favicon-32x32.png
: An image file located in theimages
folder, used as the app's favicon.script.js
: A JavaScript file located in thesrc
folder, responsible for generating the random advice and handling the button click event.
The app consists of the following main elements:
<h1>
with the idcurrentAdvice
: Displays the current advice number.<p>
with the idquoteAdvice
: Displays the generated advice.<input>
with the idbtnAdvice
: Represents the button for generating new advice.<footer>
with the idattribution
: Contains credits and attributions for the app's challenge and coding.
This app is a coding challenge from Frontend Mentor. It was coded by Ariel Bodan.
Please refer to the respective files and resources for more details on their implementations and functionalities.