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