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