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