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