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