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