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