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