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