github-pages-deploy-action/integration/index.html
Nick McCurdy d45cebdf6f
Fix lint scripts (#1154)
* Fix Prettier script name in docs

* Lint and format all files

* Fix files locally and check files in CI

* Fix unformatted files
2022-06-26 08:57:32 -04:00

34 lines
588 B
HTML

<!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>