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