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