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