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