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