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