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