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