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