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