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