trwnh.com/hugo/index.html
2022-12-03 15:40:21 -06:00

44 lines
704 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bunny's pillow fort</title>
<style>
body {
display: flex;
flex-flow: column;
}
main {
flex-grow: 1;
}
.section {
padding: 1em 0;
}
.container {
padding: 0 1em;
max-width: 960px;
}
</style>
</head>
<body>
<header class="site-header">
<div class="container">
</div>
</header>
<main>
<section class="section">
<div class="container">
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
</div>
</footer>
</body>
</html>