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