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