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