This commit is contained in:
JamesIves
2024-09-28 20:32:27 +00:00
commit ff9f358e3d
3 changed files with 34 additions and 0 deletions

1
.nojekyll Normal file
View File

@@ -0,0 +1 @@

BIN
image.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

33
index.html Normal file
View File

@@ -0,0 +1,33 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Integration Test</title>
<meta name="robots" content="noindex" />
<style>
html,
body {
height: 100%;
width: 100%;
}
body {
background-color: #000;
color: #fff;
margin: 0;
}
.image {
height: 100%;
width: 100%;
background-image: url('./image.jpg');
background-size: cover;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div class="image"></div>
</body>
</html>