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