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