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