Cansancio. No puedo más. Mi suegra está destruyendo mi familia.
Me cuesta escribirlo, pero ya no aguanto. Tal vez alguno se ría o ponga los ojos en blanco, pero he llegado al límite. Estoy al borde de coger a mi hija e irme. Sí, todavía amo a mi marido, es un padre maravilloso, cariñoso, atento… Pero junto a él está su madre. Una mujer que, poco a poco, destroza todo lo que hemos construido durante años.
Cinco años de matrimonio. Uno pensaría que, en ese tiempo, podríamos habernos acostumbrado. Pero no. Su madre es como un tornado que arrasa con todo a su paso. Manda, ordena, se entromete. Y lo peor: mi marido call# giphy-api
### Overview
In this assignment, you’ll use the GIPHY API to make a dynamic web page that populates with gifs of your choice. To finish this task, you must call the GIPHY API and use JavaScript and jQuery to change the HTML of your site.
### Before You Begin
1. **Hit the GIPHY API**.
* Fool around with the GIPHY API. [Giphy API](https://developers.giphy.com/docs/).
* Be sure to read about these GIPHY parameters (q, limit, rating) like “s” for search.
* Like many APIs, GIPHY requires developers to use a key to access their API data. To use the GIPHY API, you’ll need a GIPHY account (don’t worry, it’s free!) and then to obtain an API Key by [creating an app](https://developers.giphy.com/dashboard/?create=true).
* Make sure you switch the protocol in the query URL from **`http to https`**, or the app may not work properly when deployed to GitHub Pages.
2. **Plan your app**
* Your app should take the topics in this array, `var topics = []` create buttons in your HTML.
* Try using a loop that appends a button for each string in the array.
* When the user clicks on a button, the page should grab 10 static, non-animated gif images from the GIPHY API and place them on the page.
* When the user clicks one of the still GIPHY images, the gif should animate. If the user clicks the gif again, it should stop playing.
3. **Under every gif, display its rating (PG, G, so on).**
* This data is provided by the GIPHY API.
* Only once you get images displaying with button presses should you move on to the next step.
4. **Add a form to your page takes the value from a user input box and adds it into your topics array. Then makes a function call that takes each topic in the array remakes the buttons on the page.**
* Deploy your assignment to GitHub Pages.
* Rejoice! You just made something really cool!