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