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