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