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