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