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