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