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