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