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