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