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