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