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