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