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