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