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