sources-of-light/pages/001-title.html
2024-11-14 13:57:39 -08:00

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 &copy; 2024 Tommy Montgomery
</p>
<p class="links">
<span>tmont.com</span>
<span>&middot;</span>
<span>wakuine.com</span>
</p>
</div>
</div>
</div>
</body>
</html>