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