Use on the webTotal Use [ 3269 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/44d5a07a15b32a705656f7bfc3c0591c?family=Germagont" 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/44d5a07a15b32a705656f7bfc3c0591c?family=Germagont);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Germagont";
src: url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.eot");
src: url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/44d5a07a15b32a705656f7bfc3c0591c.svg#Germagont")format("svg");
}
2CSS rules to specify fonts
font-family: "Germagont";