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