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