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