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