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