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