This commit is contained in:
JamesIves 2023-12-14 15:34:30 +00:00
parent 3e6bbf4c98
commit 9e2cc1360e
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>