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