Created
June 20, 2024 08:56
-
-
Save vishalroygeek/32f4bbb4730bfde47364bb0776ac1ddb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>The Loud House GIF</title> | |
| <script> | |
| var encodedURL = "aHR0cHM6Ly9tZWRpYS5naXBoeS5jb20vbWVkaWEvZDNNSlo4R0pTRm9mdEQ4SS9naXBoeS5naWY="; | |
| var gifURL = atob(encodedURL); | |
| window.onload = function() { | |
| document.getElementById("loudHouseGif").src = gifURL; | |
| }; | |
| </script> | |
| </head> | |
| <body> | |
| <img id="loudHouseGif" alt="The Loud House GIF"> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment