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