feat(#15): add new font
This commit is contained in:
parent
9d635eadb8
commit
ad3226de52
2 changed files with 20 additions and 0 deletions
|
@ -19,3 +19,10 @@ body {
|
||||||
#resources {
|
#resources {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pixelify-sans-regular {
|
||||||
|
font-family: "Pixelify Sans", sans-serif;
|
||||||
|
font-optical-sizing: auto;
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
13
index.html
13
index.html
|
@ -7,6 +7,19 @@
|
||||||
content="width=device-width, initial-scale=1.0"
|
content="width=device-width, initial-scale=1.0"
|
||||||
/>
|
/>
|
||||||
<title>Game Engine</title>
|
<title>Game Engine</title>
|
||||||
|
<link
|
||||||
|
rel="preconnect"
|
||||||
|
href="https://fonts.googleapis.com"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="preconnect"
|
||||||
|
href="https://fonts.gstatic.com"
|
||||||
|
crossorigin
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="index.css"
|
href="index.css"
|
||||||
|
|
Loading…
Reference in a new issue