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