Content deleted Content added
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> <..." |
(No difference)
|
Revision as of 18:27, 1 November 2025
<!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>