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