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