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