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