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