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