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