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