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