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