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