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