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