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