mirror of
https://git.kittycat.homes/zoe/wisdom.git
synced 2024-08-15 03:26:36 +00:00
40 lines
801 B
Text
40 lines
801 B
Text
<!DOCTYPE html5>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Wisdom</title>
|
|
<meta
|
|
charset="utf-8"
|
|
name="viewport"
|
|
/>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
div {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
p {
|
|
color: floralwhite;
|
|
font-size: 40pt;
|
|
text-align: center;
|
|
font-family: 'Prata', serif;
|
|
}
|
|
body {
|
|
background-color: #080808;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body id="body">
|
|
<div class="main">
|
|
<p>{{wisdom}}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|