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