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