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