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