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