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