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