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