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