blob: a597cd4c4b93518f9b391921a5c96acaadd5a049 (
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
26
27
28
29
30
31
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<style media="screen, print">
@font-face {
font-family: "FreePixel";
src: url("https://sadhost.neocities.org/fonts/FreePixel.ttf") format("truetype");
}
body {
font-family: "FreePixel";
}
</style>
<title>Miau - Home Page</title>
</head>
<body class="centered">
<div class="large">
Ivy Forge
</div>
<main class="medium">
Welcome home pookie!
</main>
<aside>aside</aside>
<footer id="footer">Δ Copyworng :3</footer>
</body>
</html>
|