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