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