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