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