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