41 lines
779 B
HTML
41 lines
779 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
|
|
<title>Yeah, No</title>
|
|
<style>
|
|
* {
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin: auto;
|
|
max-width: 900px;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
}
|
|
|
|
span {
|
|
font-family: serif;
|
|
}
|
|
h1 {
|
|
font-family: sans;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="col">
|
|
<span>I'm sorry, but...</span>
|
|
<h1>You're Wrong</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|