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