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