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