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