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