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