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