First commit, hello world!

This commit is contained in:
amy
2025-09-06 00:43:06 -03:00
parent d09a909d54
commit 1038c7fa64
7 changed files with 41 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
*.bak
**/*.bak
+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<h1>Amy's Page! :3</h1>
<p>Hi, my name is Amy. I like to sing and listen to Jazz or Bossa Nova.</p>
</body>
</html>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+27
View File
@@ -0,0 +1,27 @@
@font-face {
font-family: 'Pixeloid';
src: url('./res/PixeloidMono.woff2') format('woff2');
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: 'PS2P';
src: url('./res/PressStart2P.woff2') format('woff2');
font-weight: normal;
font-weight: normal;
}
body {
background-color: black;
}
h1 {
font-family: PS2P, monospace;
color: white;
}
p {
font-family: Pixeloid, monospace;
color: white;
}