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