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