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