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