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