Font

Jace

Collaborate
Collaborate
Registered
Joined
Aug 9, 2020
Messages
188
Points
73

Reputation:

to install you can download the font and upload the corresponding file to your server and point the src on your css to the direct link for the font

CSS:
@font-face {
    font-family: NameTheFontToWhatYouWant;
    src: url(linktothefont);
}

then call it on your css

Code:
.divelement {
    font-family: TheFontThatYouNameItBefore;
}
 
Top