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