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