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