# The Problem When you go to embed a GIF from [giphy.com](https://giphy.com) it provides you with iFrame code that links back to GIPHY and is annoying when you hover over it. <iframe src="https://giphy.com/embed/cJntxjFbmM1YQ" width="480" height="270" frameBorder="0" class="giphy-embed" allowFullScreen></iframe> ```HTML <iframe src="https://giphy.com/embed/cJntxjFbmM1YQ" width="480" height="270" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/mrw-idiots-emails-cJntxjFbmM1YQ">via GIPHY</a></p> ``` # Solution ## The easy way Right click the GIF and select copy image, you can now paste the image where you like. ## The hard way On the GIFs page you can right-click and open the image URL. This opens a long URL that ends in giphy.gif. In our example this would be `https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExajl2dDNjMnc2MHRpZGFkczQ0cjh0bDRiODBxbGxnbHppY3RoMmVtayZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/cJntxjFbmM1YQ/giphy.gif`. This page is a webpage that has the GIF embedded. If you go to open the URL of this image it provides a webp with the same URL that the original embed has `i.giphy.com/cJntxjFbmM1YQ.webp`. This image can be downloaded as a GIF or can be embedded with simple HTML ```HTML <img src="https://i.giphy.com/cJntxjFbmM1YQ.webp"> ```