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