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