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