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