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