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