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