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