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