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