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