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