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