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