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