Skip to content

Instantly share code, notes, and snippets.

@vishalroygeek
Created June 20, 2024 08:56
Show Gist options
  • Select an option

  • Save vishalroygeek/32f4bbb4730bfde47364bb0776ac1ddb to your computer and use it in GitHub Desktop.

Select an option

Save vishalroygeek/32f4bbb4730bfde47364bb0776ac1ddb to your computer and use it in GitHub Desktop.
<!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