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