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