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