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