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