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