Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 18:27, 1 November 2025 by Friend (talk | contribs) (Created page with "<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>GIF Display</title> <style> body { margin: 0; background-color: #000; You can change this to any color: display: flex; justify-content: center; align-items: center; height: 100vh; } img { max-width: 90%; max-height: 90%; } </style> </head> <body> <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<!DOCTYPE html> <html lang="en"> <head>

 <meta charset="UTF-8" />
 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 <title>GIF Display</title>
 <style>
   body {
     margin: 0;
     background-color: #000; /* You can change this to any color */
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
   }
   img {
     max-width: 90%;
     max-height: 90%;
   }
 </style>

</head> <body>

 <img src=""C:\Users\thhul\OneDrive\Desktop\arc.gif"" alt="arc">

</body> </html>