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