alright, so i’m trying to add a local font from my pc to my website.
body {
background-color: #8aadff;
}
@font-face {
font-family: "NDSBIOS";
src: url("NDSBIOS.ttf");
}
img {
height: 50px;
width: 50px;
}
the “NDSBIOS” font is in the same directory as the css and html file. but for some reason it does not change, is there like a per-requisite i need? like do i need to specify it’s size?