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