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> <..." |
Blanked the page Tag: Blanking |
||
| Line 1: | Line 1: | ||
<!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> |
|||
<!-- Replace the src URL with your GIF link or local file --> |
|||
<img src=""C:\Users\thhul\OneDrive\Desktop\arc.gif"" alt="arc"> |
|||
</body> |
|||
</html> |
|||