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