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