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