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