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