Add nice homepage
parent
e718b453e8
commit
5705dead7a
|
@ -3,9 +3,12 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
<title>Nakidai</title>
|
<title>Nakidai</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
This is my homepagu UwU.
|
<div class="center">
|
||||||
|
This is my homepage UwU.
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,4 +1,16 @@
|
||||||
html {
|
html, body {
|
||||||
color: green;
|
height: 100%;
|
||||||
background: red;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
color: lightgreen;
|
||||||
|
background-color: red;
|
||||||
|
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
Loading…
Reference in New Issue