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