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