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