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