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