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