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