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