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