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