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