First commit

This commit is contained in:
Fern Garden 2025-08-18 10:22:29 +08:00
commit 5296a680b9
3 changed files with 34 additions and 0 deletions

BIN
images/cat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

16
index.css Normal file
View file

@ -0,0 +1,16 @@
body {
background: linear-gradient(#00d2ff 20%, #ffa6b9 0 40%, white 0 60%, #ffa6b9 0 80%, #00d2ff 0) fixed;
color: #c5c9c5;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.cat img {
width: 320px;
}

18
index.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML>
<html>
<head>
<title>meow!!</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="index.css" />
<link rel="icon" type="image/x-icon" href="/images/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="center">
<p class="cat">
<img src="/images/cat.png" alt="Pixel art of an orange cat with a trans flag behind it." />
</p>
</div>
</body>
</html>