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