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