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