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