1
0
Fork 0
www/src/.template.html

29 lines
415 B
HTML
Raw Normal View History

2023-09-11 22:38:24 +00:00
<html>
<head>
<title>Untitled Page</title>
<style>
body {
max-width: 100ch;
margin: 0 auto;
padding: 2em;
line-height: 1.4em;
}
:target {
background: palegoldenrod;
}
header::after {
content: "";
display: block;
border-top: 1px solid gray;
}
</style>
</head>
<body>
<header>
<h1>Untitled Page</h1>
</header>
<main>
<article>This content is replaced.</article>
</main>
</body>
</html>