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