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