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