82 lines
2.2 KiB
HTML
82 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: "Schibsted Grotesk";
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
#page {
|
|
width: 9.25in;
|
|
height: 12.25in;
|
|
padding: 15mm;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: end;
|
|
position: relative;
|
|
/*background-image: url(../assets/book-cover-front-no-bottom-text-grayscale-2.png);*/
|
|
/*background-size: contain;*/
|
|
/*background-repeat: no-repeat;*/
|
|
}
|
|
#image {
|
|
position: absolute;
|
|
top: .125in;
|
|
left: .125in;
|
|
width: 9in;
|
|
height: 12in;
|
|
background-image: url(../assets/book-cover-front-no-bottom-text-grayscale-2.png);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
z-index: -1;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
text-align: center;
|
|
font-size: 12pt;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.copyright {
|
|
margin-top: 15mm;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 5mm;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="page">
|
|
<div id="image"></div>
|
|
<div>
|
|
<p>
|
|
Transcribed and engraved by Tommy Montgomery
|
|
<br />
|
|
Art and design by Joe Montgomery
|
|
</p>
|
|
|
|
<div class="copyright">
|
|
<p>
|
|
Copyright © 2024 Tommy Montgomery
|
|
</p>
|
|
<p class="links">
|
|
<span>tmont.com</span>
|
|
<span>·</span>
|
|
<span>wakuine.com</span>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|