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