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