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