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