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