mikl-blog/index.html

35 lines
919 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mikl</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f5f5f0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
}
.message {
font-size: 1.2rem;
color: #1a1a1a;
text-align: center;
padding: 2rem;
line-height: 1.6;
}
</style>
</head>
<body>
<p class="message">сейчас тут ничего нет, но скоро что-то появится.</p>
</body>
</html>