29 lines
555 B
HTML
29 lines
555 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>niq-dev.com</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
background: #0b0f14;
|
|
color: #e6edf3;
|
|
}
|
|
h1 {
|
|
font-weight: 500;
|
|
font-size: 1.5rem;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>niq-dev.com</h1>
|
|
</body>
|
|
</html>
|