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