« Back to the HTML Forum

is there a way to use custom fonts that arent on google fonts???

Posted by Nate

posted

Forum: HTML Group

i wanna use the bitwise font but its not on google fonts </33


Report Topic

1 Reply

Reply by Bonnie ᕙ(`▿´)ᕗ

posted
updated

yes there is !!!!!! 

firstly, you have to download a font (i completely forgot which one it was for this example lol)

then you'll have to put the file with the .ttf or .otf extension in catbox (or any file uploading system that can provide you a link. i use catbox.moe.)

after that, you'll paste this code in ur profile:

@font-face {

   font-family: FONTNAME;

   src: url(FONT_LINK);

}


from then on, if you wanna apply a font to anything, u can apply it by writing

font-family: FONTNAME


for example, if you wanna apply the font to the entire profile, you can write:


.profile {

font-family: FONTNAME;

}


hope this helped!!! im also a beginner so ill try to find my best for any other questions lolol


Permalink Report Reply