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