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