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