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