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