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