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