Add nice homepage

master
Nakidai 2024-01-29 22:10:00 +03:00 committed by Nakidai
parent 3015f40130
commit 8b7ca56a63
Signed by: nakidai
GPG Key ID: 18AD605FDA13FE5A
2 changed files with 19 additions and 4 deletions

View File

@ -3,9 +3,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Nakidai</title>
</head>
<body>
This is my homepagu UwU.
<div class="center">
This is my homepage UwU.
</div>
</body>
</html>

View File

@ -1,4 +1,16 @@
html {
color: green;
background: red;
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.center {
color: lightgreen;
background-color: red;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}