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