42 lines
877 B
HTML
42 lines
877 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<link rel="apple-touch-icon" href="https://data.lukasrosier.com/appsmall.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="light dark">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>NOW</title>
|
|
<base href="https://www.lukasrosier.com">
|
|
</head>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
article {
|
|
max-width: 600px;
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<article>
|
|
<p>
|
|
what are we doing now?</br>
|
|
|
|
01 march 25</br>
|
|
|
|
cologne karneval </br>
|
|
|
|
|
|
</p>
|
|
</article>
|
|
</body>
|
|
</html>
|