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