Use on the webTotal Use [ 5509 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1fb9a1f21094ffe825cc2ab65085f277?family=Fust+%26+Schoeffer+Durandus+Gotico-Antiqua+118G" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/1fb9a1f21094ffe825cc2ab65085f277?family=Fust+%26+Schoeffer+Durandus+Gotico-Antiqua+118G);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fust & Schoeffer Durandus Gotico-Antiqua 118G";
src: url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.eot");
src: url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1fb9a1f21094ffe825cc2ab65085f277.svg#Fust & Schoeffer Durandus Gotico-Antiqua 118G")format("svg");
}
2CSS rules to specify fonts
font-family: "Fust & Schoeffer Durandus Gotico-Antiqua 118G";