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