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