blob: a367e4ea04a2fcb2ceb7d5361c014e8af02d341a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!doctype html>
<html class="no-js" lang="en">
<head>
<title>noms!</title>
<style>
@font-face {
font-family: "Annie Use Your Telescope";
src: url("AnnieUseYourTelescope-Regular.ttf") format("truetype");
font-display: swap;
}
body {
text-align: center;
margin-top: 40vh;
background-color: lightcoral;
font-family: "Annie Use Your Telescope";
font-size: 40pt;
color: white;
}
</style>
</head>
<body>
<img src="./BlobCat_Nom.png" alt="Blobcat biting another blobcat's neck">
<p>You like biting cuties, don't you? :3</p>
</body>
</html>
|