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