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