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