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