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