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