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