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