We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf90593 commit 16bd3fcCopy full SHA for 16bd3fc
.gitignore
@@ -0,0 +1 @@
1
+.vite
img/osiris.png
320 KB
index.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
2
+<html lang="en">
3
+
4
+<head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Full-Screen Image</title>
8
+ <style>
9
+ body,
10
+ html {
11
+ margin: 0;
12
+ padding: 0;
13
+ height: 100%;
14
+ overflow: hidden;
15
+ }
16
17
+ img {
18
+ display: block;
19
+ width: 100%;
20
21
+ object-fit: contain;
22
+ margin: 0 auto;
23
24
+ </style>
25
+</head>
26
27
+<body>
28
+ <img src="img/osiris.png" alt="Large image">
29
+</body>
30
31
+</html>
0 commit comments