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