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