First commit, hello world!
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
*.bak
|
||||||
|
**/*.bak
|
||||||
12
index.html
Normal file
12
index.html
Normal 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>
|
||||||
BIN
src/res/PixeloidMono.woff2
Normal file
BIN
src/res/PixeloidMono.woff2
Normal file
Binary file not shown.
BIN
src/res/PixeloidSans.woff2
Normal file
BIN
src/res/PixeloidSans.woff2
Normal file
Binary file not shown.
BIN
src/res/PixeloidSansBold.woff2
Normal file
BIN
src/res/PixeloidSansBold.woff2
Normal file
Binary file not shown.
BIN
src/res/PressStart2P.woff2
Normal file
BIN
src/res/PressStart2P.woff2
Normal file
Binary file not shown.
27
src/style.css
Normal file
27
src/style.css
Normal 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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user