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