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