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