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