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