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