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