mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-09 12:41:12 -06:00
28 lines
406 B
HTML
28 lines
406 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="footer">
|
|
<button><a href="book/book.pdf" download="book.pdf">Download</a></button>
|
|
</div>
|
|
|
|
<iframe src="book/book.pdf"></iframe>
|
|
</body>
|
|
</html> |