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