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