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