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