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