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