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