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