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